Click or drag to resize

NMathFunctionsNaNSumOfSquares(DoubleMatrix) Method

Calculates the sum of the squared deviations from the mean of the elements of the columns of a given matrix that are not NaN.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public static DoubleVector NaNSumOfSquares(
	DoubleMatrix A
)

Parameters

A  DoubleMatrix
A matrix.

Return Value

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