Function hypot( x, y )
- Description:
-
Returns the square root of the sum of squares of its two arguments.
Doing it like this may avoid intermediate overflow or underflow.
- Parameters:
-
- x (floating point)
- a value
- y (floating point)
- a value
- Return Value (floating point):
- sqrt(
x
2 + y
2)
- Signature:
- double hypot(double, double)