  | NMathFunctionsSumOfSquares(FloatMatrix) Method | 
            Calculates the sum of the squared deviations from the mean of the elements
            of the columns of a given matrix.
            
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
Syntaxpublic static FloatVector SumOfSquares(
	FloatMatrix A
)
Public Shared Function SumOfSquares ( 
	A As FloatMatrix
) As FloatVector
public:
static FloatVector^ SumOfSquares(
	FloatMatrix^ A
)
static member SumOfSquares : 
        A : FloatMatrix -> FloatVector Parameters
- A  FloatMatrix
 - A matrix.
 
Return Value
FloatVectorA new vector containing the sum of the squared deviations from
            the mean of the elements of the columns of 
A.
Remarksv[j] = (A[0,j] - mean)^2 + (A[i,j] - mean)^2 ...
See Also