Returns the smallest value in an array using IEEE-754r semantics.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public static double Min(
params double[] values
)
Public Shared Function Min (
ParamArray values As Double()
) As Double
public:
static double Min(
... array<double>^ values
)
static member Min :
values : float[] -> float
Parameters
- values
- Type: SystemDouble
An array of real numbers.
Return Value
Type:
DoubleThe smallest value in
values.
In accordance with IEEE-754r, NaN is returned only if
all elements of values are NaN.
This behavior is different from the Max(Double, Double) function
in the Base Class Libraries.
Reference