From Friday, April 19th (11:00 PM CDT) through Saturday, April 20th (2:00 PM CDT), 2024, ni.com will undergo system upgrades that may result in temporary service interruption.

We appreciate your patience as we improve our online experience.

LabVIEW

cancel
Showing results for 
Search instead for 
Did you mean: 

Logarithmic interpolation LV5.1

How to make a logarithmic interpolation with LV5.1?

Thanks
0 Kudos
Message 1 of 2
(2,887 Views)
If you have array of numbers A[i] you may try to do the next thing:
1. Calculate the exponential of this array
B[i] = Exp(A[i]);
2. Then make the linear interpolation of array B
C[i+di] = Linear interpolation of B[i]
3. Then calculate the ln(C[i+di])
A[i+di] = ln(C[i+di]);
As I understand you will get the logarithmic interpolation of your array A[i]


Oleg Chutko
0 Kudos
Message 2 of 2
(2,887 Views)