Click or drag to resize

NMathFunctionsNaNMedian(FloatVector) Method

Calculates the median value of vector elements that are not equal to (float) NaN.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public static float NaNMedian(
	FloatVector v
)

Parameters

v  FloatVector
A vector.

Return Value

Single
The median value of the elements in v that are not NaN.
Exceptions
ExceptionCondition
InvalidArgumentException Thrown if v has zero non-NaN length.
Remarks
A vector of non-NaN numbers is sorted. If the vector has an odd number of elements the middle number is returned. Otherwise, the mean of the two middle numbers is returned.
See Also