MicrOS
|
#include "../math.h"
Functions | |
double | hypot (double x, double y) |
Compute hypotenuse. More... | |
double hypot | ( | double | x, |
double | y | ||
) |
Compute hypotenuse.
The hypot functions compute the square root of the sum of the squares of x and y, without undue overflow or underflow. A range error may occur.
x | Floating point value corresponding to the leg of a right-angled triangle for which the hypotenuse is computed. |
y | Floating point value corresponding to the leg of a right-angled triangle for which the hypotenuse is computed. |