Calculates the index of the minimum value of the vector elements that are not equal to NaN.

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

Syntax

C#
public static int NaNMinIndex(
	DoubleVector v
)
Visual Basic (Declaration)
Public Shared Function NaNMinIndex ( _
	v As DoubleVector _
) As Integer
Visual C++
public:
static int NaNMinIndex(
	DoubleVector^ v
)

Parameters

v
Type: CenterSpace.NMath.Core..::.DoubleVector
A vector.

Return Value

The index of the minimum value of the elements in v that are not NaN.

See Also