  | NMathFunctionsNaNMaxIndex(Double) Method | 
            Calculates the index of the maximum value in the given data set,
            excluding NaN values.
            
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
Syntaxpublic static int NaNMaxIndex(
	double[] data
)
Public Shared Function NaNMaxIndex ( 
	data As Double()
) As Integer
public:
static int NaNMaxIndex(
	array<double>^ data
)
static member NaNMaxIndex : 
        data : float[] -> int Parameters
- data  Double
 - An array.
 
Return Value
Int32Maximum index.
RemarksReturns -1 if data has length of zero.
See Also