Click or drag to resize

BasicFunctionshypot(Single, Single, Single) Method

The standard hypot() function for three arguments, taking care of overflows and divisions by zero.

Namespace: Altaxo.Calc
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3448.0 (4.8.3448.0)
Syntax
C#
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

Single
The square root of the sum of the squares of x, y, and z.
See Also