So you found the max value, but now want to find the index of the value that's 0.707 of the max (if that value exists in the array)?
There is a Search 1D Array function on the Array function palette, but you probably can't use it because it only finds an exact match. If your numbers are real measurements or calculations, you shouldn't expect to have an exact match.
After you find the max, go into a For loop, auto-indexed by the array. Decide what tolerance you want to add to 0.707 * max. Use functions on the Comparison function palette to determine if the current array element is within your tolerance of 0.707 * max. If it is, the For loop iteration (i) terminal has the value of the index. Wire the in
dex through a Case structure or a Select function (from the Comparison function palette) to a shift register on the For loop.
Or, if you want to stop at the first occurance, use a While loop, auto-index the array, and stop the While loop if the array element is within your tolerance of 0.707 * max or if you're at the end of the array (While loop iteration (i) terminal = array size - 1).