Returns the indices of all rows with a given value in a specified column.

Namespace:  CenterSpace.NMath.Stats
Assembly:  NMathStats (in NMathStats.dll) Version: 3.4.0.0

Syntax

C#
public int[] IndicesOf(
	int colIndex,
	Object val
)
Visual Basic (Declaration)
Public Function IndicesOf ( _
	colIndex As Integer, _
	val As Object _
) As Integer()
Visual C++
public:
array<int>^ IndicesOf(
	int colIndex, 
	Object^ val
)

Parameters

colIndex
Type: System..::.Int32
A column index.
val
Type: System..::.Object
A value

Return Value

An array of row indices.

See Also