| FP_hypot Full Description |   | 
| Syntax define external float function FP_hypot (value float x, value float y) Purpose Calculates the hypotenuse of a right-angle triangle. The following example shows how to use the  global float x global float y global float result process set x to FP_v "5" set y to FP_v "5" set result to FP_hypot(x,y) output FP_s(result, 2) || "%n" |