Stats.Sum Of Squares Method
Definition
Namespace: Extreme.Statistics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
Overload List
Sum | Returns the sum of the squares of the elements of an array. |
Sum | Returns the sum of the squares of the elements of an array. |
Sum | Returns the sum of the squares of the elements of an array. |
Sum | Returns the sum of the squares of the observations in a Vector<T>. |
SumOfSquares(Double[])
Returns the sum of the squares of the elements of an array.
public static double SumOfSquares(
double[] values
)
Parameters
- values Double[]
- A Double array.
Return Value
DoubleThe sum of the squares of the elements of values.
Exceptions
ArgumentNullException | values is null. |
SumOfSquares(IEnumerable<Double>)
Returns the sum of the squares of the elements of an array.
public static double SumOfSquares(
IEnumerable<double> values
)
Parameters
- values IEnumerable<Double>
- An object that implements IEnumerable<Double>.
Return Value
DoubleThe sum of the squares of the elements of values.
Exceptions
ArgumentNullException | values is null. |
SumOfSquares(Int32[])
Returns the sum of the squares of the elements of an array.
public static double SumOfSquares(
int[] values
)
Parameters
- values Int32[]
- An Int32 array.
Return Value
DoubleThe sum of the squares of the elements of values.
Exceptions
ArgumentNullException | values is null. |
SumOfSquares<T>(Vector<T>)
Returns the sum of the squares of the observations in a Vector<T>.
public static T SumOfSquares<T>(
Vector<T> values
)
Parameters
Type Parameters
- T
Return Value
TThe sum of the squares of the observations in values.
Exceptions
ArgumentNullException | values is null. |