Click or drag to resize

NMathFunctionsNaNSort(DoubleVector) 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 DoubleVector NaNSort(
	DoubleVector v
)

Parameters

v  DoubleVector
A vector containing NaN's.

Return Value

DoubleVector
Sorted vector.
See Also