BigFloat.Hypot Method

Computes the hypotenuse given two values representing the lengths of the shorter sides in a right-angled triangle.

Definition

Namespace: Numerics.NET
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0
C#
public static BigFloat Hypot(
	BigFloat x,
	BigFloat y
)

Parameters

x  BigFloat
The value to square and add to y.
y  BigFloat
The value to square and add to x.

Return Value

BigFloat
The square root of x-squared plus y-squared.

Implements

IRootFunctions<TSelf>.Hypot(TSelf, TSelf)

See Also