Stats.SumOfSquares Method

Definition

Namespace: Extreme.Statistics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23

Overload List

SumOfSquares(Double[]) Returns the sum of the squares of the elements of an array.
SumOfSquares(IEnumerable<Double>) Returns the sum of the squares of the elements of an array.
SumOfSquares(Int32[]) Returns the sum of the squares of the elements of an array.
SumOfSquares<T>(Vector<T>) Returns the sum of the squares of the observations in a Vector<T>.

Stats.SumOfSquares(Double[])

Returns the sum of the squares of the elements of an array.
C#
public static double SumOfSquares(
	double[] values
)

Parameters

values  Double[]
A Double array.

Return Value

Double
The sum of the squares of the elements of values.

Exceptions

ArgumentNullExceptionvalues is null.

Stats.SumOfSquares(IEnumerable<Double>)

Returns the sum of the squares of the elements of an array.
C#
public static double SumOfSquares(
	IEnumerable<double> values
)

Parameters

values  IEnumerable<Double>
An object that implements IEnumerable<Double>.

Return Value

Double
The sum of the squares of the elements of values.

Exceptions

ArgumentNullExceptionvalues is null.

Stats.SumOfSquares(Int32[])

Returns the sum of the squares of the elements of an array.
C#
public static double SumOfSquares(
	int[] values
)

Parameters

values  Int32[]
An Int32 array.

Return Value

Double
The sum of the squares of the elements of values.

Exceptions

ArgumentNullExceptionvalues is null.

Stats.SumOfSquares<T>(Vector<T>)

Returns the sum of the squares of the observations in a Vector<T>.
C#
public static T SumOfSquares<T>(
	Vector<T> values
)

Parameters

values  Vector<T>
A Vector<T>.

Type Parameters

T

Return Value

T
The sum of the squares of the observations in values.

Exceptions

ArgumentNullExceptionvalues is null.

See Also