Click or drag to resize

BasicFunctionshypot(Single, Single, Single) Method

The standard hypot() function for three arguments taking care of overflows and zerodivides.

Namespace: Altaxo.Calc
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.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
Square root of the sum of x-square, y-square and z-square.
See Also