Quad.MinMagnitudeNumber Method

Compares two values to compute which has the lesser magnitude and returning the other value if an input is NaN.

Definition

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

Parameters

x  Quad
The value to compare with y.
y  Quad
The value to compare with x.

Return Value

Quad
x if it is less than y; otherwise, y.

Implements

INumberBase<TSelf>.MinMagnitudeNumber(TSelf, TSelf)

See Also