Searches for the given value in the index array.

Namespace:  CenterSpace.NMath.Matrix
Assembly:  NMath (in NMath.dll) Version: 5.1.0.0

Syntax

C#
public int FindIndex(
	int j
)
Visual Basic (Declaration)
Public Function FindIndex ( _
	j As Integer _
) As Integer
Visual C++
public:
int FindIndex(
	int j
)

Parameters

j
Type: System..::.Int32
The value to search for.

Return Value

The zero-based index of the first occurrence of the value j if found; otherwise, –1.

See Also