BasicFunctionshypot(Single, Single, Single) 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 float hypot(
float x,
float y,
float z
)
Parameters
- x Single
- First argument.
- y Single
- Second argument.
- z Single
- Third argument.
Return Value
SingleSquare root of the sum of x-square, y-square and z-square.
See Also