Click or drag to resize

RMathHypot Method

The standard hypot() function for two 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 double Hypot(
	double x,
	double y
)

Parameters

x  Double
First argument.
y  Double
Second argument.

Return Value

Double
Square root of the sum of x-square and y-square.
See Also