BasicFunctionshypot(Single, Single, Single) Method |
The standard hypot() function for three arguments, taking care of overflows and divisions by zero.
Namespace: Altaxo.CalcAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3448.0 (4.8.3448.0)
Syntaxpublic static float hypot(
float x,
float y,
float z
)
Parameters
- x Single
- First argument.
- y Single
- Second argument.
- z Single
- Third argument.
Return Value
SingleThe square root of the sum of the squares of
x,
y, and
z.
See Also