Stats.Sum As Method
Definition
Namespace: Numerics.NET.Statistics
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.2
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.2
Overload List
Sum | Returns the sum of the elements of a vector. |
Sum | Returns the sum of the elements of a span. |
SumAs<T, TResult>(Vector<T>)
Returns the sum of the elements of a vector.
public static TResult SumAs<T, TResult>(
this Vector<T> values
)
Parameters
- values Vector<T>
- A readonly span of values.
Type Parameters
- T
- The type of the elements of values.
- TResult
- The type of the result.
Return Value
TResultThe sum of the elements of values.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type Vector<T>. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).Remarks
Values are converted to TResult and the converted values are aggregated.
SumAs<T, TResult>(ReadOnlySpan<T>, Boolean)
Returns the sum of the elements of a span.
public static TResult SumAs<T, TResult>(
this ReadOnlySpan<T> values,
bool skipMissingValues = false
)
Parameters
- values ReadOnlySpan<T>
- A readonly span of values.
- skipMissingValues Boolean (Optional)
- Optional. Specifies whether missing values should be excluded from the calculation. The default is false.
Type Parameters
- T
- The type of the elements of values.
- TResult
- The type of the result.
Return Value
TResultThe sum of the elements of values.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type ReadOnlySpan<T>. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).Remarks
Values are converted to TResult and the converted values are aggregated.