If you use a Formula Node, you need to do something like this.
int x, i ;
float large, large707;
large=a[0];
for(i=1; i<202; i++)
{
if(a[i]>=large)
{
large = a[i];
x=i;
}
}
large707 = large * 0.707;
Then you need to add Formula Node outputs for large and large707.
Note that I added the line large = a[i]; to save the new max to large.
If you use Array Max & Min, use the Multiply function from the numeric palette to multiply the max value by 0.707. Look at the LabView help for Array Max & Min.
Look at the attached example.