 | NMathFunctionsMedian(DoubleMatrix) Method |
Computes the median of each of the matrix columns.
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
Syntaxpublic static DoubleVector Median(
DoubleMatrix A
)
Public Shared Function Median (
A As DoubleMatrix
) As DoubleVector
public:
static DoubleVector^ Median(
DoubleMatrix^ A
)
static member Median :
A : DoubleMatrix -> DoubleVector
Parameters
- A DoubleMatrix
- A matrix.
Return Value
DoubleVectorA vector.
Exceptions
Remarks
Each column vector is sorted. If the vector has an odd number of
elements the middle number is used. Otherwise, the mean of
the two middle numbers is used.
See Also