Click or drag to resize

NMathFunctionsNaNMedian(FloatMatrix) Method

Computes the NaN median of each of the matrix columns.

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

Parameters

A  FloatMatrix
A matrix.

Return Value

FloatVector
A vector.
Exceptions
ExceptionCondition
InvalidArgumentException Thrown if A has zero rows.
Remarks
Each column vector's non-NaN numbers are sorted. If the vector has an odd number of elements the middle number is used. Otherwise, the mean of the two middle numbers is returned.
See Also