Click or drag to resize

NMathFunctionsMean(DoubleComplexMatrix) Method

Computes the mean of each of the matrix columns.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public static DoubleComplexVector Mean(
	DoubleComplexMatrix A
)

Parameters

A  DoubleComplexMatrix
A matrix.

Return Value

DoubleComplexVector
A vector.
Exceptions
ExceptionCondition
InvalidArgumentException Thrown if A has zero rows.
Remarks
v[j] = (A[0,j] + A[1,j] + ... A[i,j]) / i
See Also