Hypot
This reference topic applies to FQL v4. Go to this page for the latest FQL v10 reference topics. |
Hypot( a, b )
hypot( a, b )
Hypot( a, b )
Hypot( a, b )
Hypot( a, b )
Hypot( a, b )
Description
The Hypot
function calculates the length of the hypotenuse of a
right-angle triangle, given the length of the other two sides.
Parameters
Parameter | Type | Definition and Requirements |
---|---|---|
|
Number |
The length of one side of the right triangle. |
|
Number |
Optional - The length of the second side of the right triangle. If
this argument is not provided, the operation assumes an isosceles
right triangle, where |
Examples
The following query executes an array of independent hypotenuse calculations and returns the results in an array. The result array position matches the execution array position. The first operation takes the value 3.0 for the length of both sides of the right triangle (i.e., an isosceles right triangle) and returns the length of the hypotenuse. The result 4.242640687119285 is in the top position of the execution array. The second operation calculates the hypotenuse length using side lengths of 3 and 4. The resulting hypotenuse length of 5.0 is placed in the second position of the execution array.
[ 4.242640687119285, 5, 6.519202405202649 ]
[4.242640687119285, 5, 6.519202405202649]
[4.242640687119285, 5.0, 6.519202405202649]
[ 4.242640687119285, 5, 6.519202405202649 ]