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
(3,331 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
(3,331 Views)