Click or drag to resize

NMathFunctionsSumOfSquares(FloatVector) Method

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

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public static float SumOfSquares(
	FloatVector v
)

Parameters

v  FloatVector
A vector.

Return Value

Single
The sum of the squared deviations from the mean of the elements of v.
Remarks
C#
s = (v[0] - mean)^2 + (v[1] - mean)^2 ... + (v[n] - mean)^2
See Also