Stats.Min Method
Definition
Namespace: Numerics.NET.Statistics
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.2
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.2
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. |
Min(Double[])
Returns the minimum value of the elements of an array.
public static double Min(
double[] values
)
Parameters
Return Value
DoubleThe minimum value of the elements of values.
Exceptions
Argument | values is null. |
Min<T>(IList<T>)
Returns the minimum value of the elements of a list.
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
TThe minimum value of the elements of values.
Exceptions
Argument | values is null. |
Min<T>(IList<T>, IComparer<T>)
Returns the maximum value of the elements of an array.
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
TThe maximum value of the elements of values.
Exceptions
Argument | values is null. |