BigFloat.MinMagnitude Method

Compares two values to compute which has the lesser magnitude.

Definition

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

Parameters

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

Return Value

BigFloat
x if it has a lesser magnitude than y; otherwise, y.

Implements

INumberBase<TSelf>.MinMagnitude(TSelf, TSelf)

See Also