Returns the largest 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 Max(
params double[] values
)
Public Shared Function Max (
ParamArray values As Double()
) As Double
public:
static double Max(
... array<double>^ values
)
static member Max :
values : float[] -> float
Parameters
- values
- Type: SystemDouble
An array of real numbers.
Return Value
Type:
DoubleThe largest 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