Click or drag to resize

NMathFunctionsSumOfSquares(FloatComplexMatrix) Method

Calculates the sum of the squared deviations from the mean of the elements of the columns of a given matrix.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public static FloatComplexVector SumOfSquares(
	FloatComplexMatrix A
)

Parameters

A  FloatComplexMatrix
A matrix.

Return Value

FloatComplexVector
A new vector containing the sum of the squared deviations from the mean of the elements of the columns of A.
Remarks
C#
v[j] = (A[0,j] - mean)^2 + (A[i,j] - mean)^2 ...
See Also