05-25-2017 05:45 PM
Hello everyone,
Now I have an array of cluster. The cluster is made of two elements (x,y). Now I want to find the minimal value of y, and its corresponding x. So how should I do this?
Thank you.
Solved! Go to Solution.
05-25-2017 05:58 PM - edited 05-25-2017 06:04 PM
I would use a For Loop to unbundle just the Y elements into their own array, then use the Array Max & Min function to find the index of that Min Y value of that new array. Once you've got that, then use that index on the cluster array and unbundle just the X value.
-Preston