Click or drag to resize

BasicFunctionshypot(Double, Double, Double) 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 double hypot(
	double x,
	double y,
	double z
)

Parameters

x  Double
First argument.
y  Double
Second argument.
z  Double
Third argument.

Return Value

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