Stats.Min Method

Definition

Namespace: Extreme.Statistics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23

Overload List

Min(Double[]) Returns the minimum value of the elements of an array.
Min<T>(IList<T>) Returns the minimum value of the elements of a list.
Min<T>(IList<T>, IComparer<T>) Returns the maximum value of the elements of an array.

Stats.Min(Double[])

Returns the minimum value of the elements of an array.
C#
public static double Min(
	double[] values
)

Parameters

values  Double[]
A Double array.

Return Value

Double
The minimum value of the elements of values.

Exceptions

ArgumentNullExceptionvalues is null.

Stats.Min<T>(IList<T>)

Returns the minimum value of the elements of a list.
C#
public static T Min<T>(
	IList<T> values
)
where T : Object, IComparable<T>

Parameters

values  IList<T>
A list of items.

Type Parameters

T
The type

Return Value

T
The minimum value of the elements of values.

Exceptions

ArgumentNullExceptionvalues is null.

Stats.Min<T>(IList<T>, IComparer<T>)

Returns the maximum value of the elements of an array.
C#
public static T Min<T>(
	IList<T> values,
	IComparer<T> comparer
)

Parameters

values  IList<T>
A Double array.
comparer  IComparer<T>
An IComparer<T> object that is used to compare instances of the generic type.

Type Parameters

T
The type

Return Value

T
The maximum value of the elements of values.

Exceptions

ArgumentNullExceptionvalues is null.

See Also