Calculates the index of the minimum value in the given data set.
Namespace:
CenterSpace.NMath.StatsAssembly: NMathStats (in NMathStats.dll) Version: 3.4.0.0
Syntax
| C# |
|---|
public static int MinIndex( IDFColumn data ) |
| Visual Basic (Declaration) |
|---|
Public Shared Function MinIndex ( _ data As IDFColumn _ ) As Integer |
| Visual C++ |
|---|
public: static int MinIndex( IDFColumn^ data ) |
Parameters
- data
- Type: CenterSpace.NMath.Stats..::.IDFColumn
A column.
Return Value
Minimum index.
Remarks
Returns -1 if data has length of zero.
Exceptions
| Exception | Condition |
|---|---|
| CenterSpace.NMath.Core..::.InvalidArgumentException | Thrown if data is not numeric. |