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

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

Syntax

C#
public static int NaNMaxIndex(
	FloatVector v
)
Visual Basic
Public Shared Function NaNMaxIndex ( _
	v As FloatVector _
) As Integer
Visual C++
public:
static int NaNMaxIndex(
	FloatVector^ v
)

Parameters

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

Return Value

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

See Also