Checks whether a data set contains any NaN values.

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

Syntax

C#
public static bool NaNCheck(
	double[] data
)
Visual Basic (Declaration)
Public Shared Function NaNCheck ( _
	data As Double() _
) As Boolean
Visual C++
public:
static bool NaNCheck(
	array<double>^ data
)

Parameters

data
Type: array< System..::.Double >[]()[]
An array.

Return Value

True if data contains any NaN values. False, otherwise

See Also