BasicFunctionshypot(Double, Double, Double) Method |
The standard hypot() function for three arguments taking care of overflows and zerodivides.
Namespace: Altaxo.CalcAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax public static double hypot(
double x,
double y,
double z
)
Parameters
- x Double
- First argument.
- y Double
- Second argument.
- z Double
- Third argument.
Return Value
DoubleSquare root of the sum of x-square, y-square and z-square.
See Also