Hypot
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.
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]
The Go version of this example is not currently available.
[4.242640687119285, 5.0, 6.519202405202649]
[ 4.242640687119285, 5, 6.519202405202649 ]
The Python version of this example is not currently available.
[ 4.242640687119285, 5, 6.519202405202649 ]
Is this article helpful?
Tell Fauna how the article can be improved:
Visit Fauna's forums
or email docs@fauna.com
Thank you for your feedback!