Quad.MaxNumber Method

Compares two values to compute which is greater 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 MaxNumber(
	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 greater than y; otherwise, y.

Implements

INumber<TSelf>.MaxNumber(TSelf, TSelf)

See Also