02-24-2014 04:41 PM - edited 02-24-2014 04:42 PM
Hello all!
I have an array with information (values), I want to read and collect 4 values from the array. These shall be used for further calculations.
Take a scenario:
Let us say that the row index is 2.5 and the column index is 5.6 (these values originate from other calculations), then I would like to collect the values from the array, respectivly (2.5) (2.6) (3.5) and (3.6). So in basic the two integers closest to the index value.
The next step is to use these four values to do an bilinear interpolation (this is my problem), but in order to use them I need to get them into an formula node.
To sum up; how can I collect and store the 4 values for further calculations.
Hope I explained good enough!
PS! I am rather new to LabVIEW, loving it so far
Solved! Go to Solution.
02-24-2014 04:56 PM
Sounds like what you're really looking for is Interpolate 2D.vi. Check it out on the Math Palette under Interpolation.
Or are you using a different type of interpolation function?
No need to reinvent the wheel if your 2-D array just represents nodes on a surface.
02-24-2014 05:32 PM
Eureka !
Thank you