Creates a copy of the matrix with only those rows that do not contain NaN values.

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

Syntax

C#
public static DoubleMatrix NaNRemoveRows(
	DoubleMatrix data
)
Visual Basic (Declaration)
Public Shared Function NaNRemoveRows ( _
	data As DoubleMatrix _
) As DoubleMatrix
Visual C++
public:
static DoubleMatrix^ NaNRemoveRows(
	DoubleMatrix^ data
)

Parameters

data
Type: CenterSpace.NMath.Core..::.DoubleMatrix
A matrix.

Return Value

A copy without NaN values.

See Also