Stats.Sum 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(Double[]) | Returns the sum of the elements of an array. |
Sum( | Returns the sum of the elements of a sequence. |
Sum(Int32[]) | Returns the sum of the elements of an array. |
Sum<T>(Vector<T>) | Returns the sum of the observations in a Vector<T>. |
Sum(Double[])
Returns the sum of the elements of an array.
public static double Sum(
double[] values
)
Parameters
- values Double[]
- A Double array.
Return Value
DoubleThe sum of the elements of values.
Exceptions
ArgumentNullException | values is null. |
Sum(IEnumerable<Double>)
Returns the sum of the elements of a sequence.
public static double Sum(
IEnumerable<double> values
)
Parameters
- values IEnumerable<Double>
- An object that implements IEnumerable<Double>.
Return Value
DoubleThe sum of the elements of values.
Exceptions
ArgumentNullException | values is null. |
Sum(Int32[])
Returns the sum of the elements of an array.
public static long Sum(
int[] values
)
Parameters
- values Int32[]
- An Int32 array.
Return Value
Int64The sum of the elements of values.
Exceptions
ArgumentNullException | values is null. |
Sum<T>(Vector<T>)
Returns the sum of the observations in a Vector<T>.
public static T Sum<T>(
Vector<T> values
)
Parameters
Type Parameters
- T
Return Value
TThe sum of the observations in values.
Exceptions
ArgumentNullException | values is null. |