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 float Min(
params float[] values
)
Public Shared Function Min (
ParamArray values As Single()
) As Single
public:
static float Min(
... array<float>^ values
)
static member Min :
values : float32[] -> float32
Parameters
- values
- Type: SystemSingle
An array of real numbers.
Return Value
Type:
SingleThe 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(Single, Single) function
in the Base Class Libraries.
Reference