09-09-2008 02:39 PM
Hello,
I have an 2D array of data (x and y values). I do a subarray and seperate the data into two 1D array. I then extract the max and min values from the y data. How do I also get the corresponding x values corresponding to the min and max value of the y data?
Any help will be appreciated.
Thanks,
hiNi
09-09-2008 02:48 PM
Hi hiNI,
if you use the max/min function you get the max and min value and also the index of both. Use this index and connect it with the index array function, where you alse connect your x array. You can resize the index array function to connect both at the same time.
Mike
09-09-2008 02:59 PM - edited 09-09-2008 03:00 PM
09-09-2008 08:49 PM