Elementary.Min(Double, Double, Double) Method

Returns the smallest of three numbers using IEEE-754r semantics.

Definition

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public static double Min(
	double x,
	double y,
	double z
)

Parameters

x  Double
A real number.
y  Double
A real number.
z  Double
A real number.

Return Value

Double
The smaller of x, y, and z.

Remarks

In accordance with IEEE-754r, NaN is returned only if x, y and z are all NaN. This behavior is different from the Min(Double, Double) function in the Base Class Libraries.

See Also