Click or drag to resize

NMathFunctionsNaNSort(FloatVector) Method

Sort a given vector containing NaN's. If the vector is compact (
C#
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: 7.4
Syntax
public static FloatVector NaNSort(
	FloatVector v
)

Parameters

v  FloatVector
A vector containing NaN's.

Return Value

FloatVector
Sorted vector.
See Also