Sort a given vector containing NaN's. If the vector is compact (
CopyC#
v.Stride == 1
), the vector is sorted in-place. If the vector is non-compact, a sorted copy of the vector is returned.

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

Syntax

C#
public static FloatVector NaNSort(
	FloatVector v
)
Visual Basic (Declaration)
Public Shared Function NaNSort ( _
	v As FloatVector _
) As FloatVector
Visual C++
public:
static FloatVector^ NaNSort(
	FloatVector^ v
)

Parameters

v
Type: CenterSpace.NMath.Core..::.FloatVector
A vector containing NaN's.

Return Value

Sorted vector.

See Also