Aggregates the elements of a vector and returns the result.
Namespace:
Extreme.DataAnalysis
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public abstract bool TryAggregate(
Vector<T> values,
out U result
)
Public MustOverride Function TryAggregate (
values As Vector(Of T),
<OutAttribute> ByRef result As U
) As Boolean
public:
virtual bool TryAggregate(
Vector<T>^ values,
[OutAttribute] U% result
) abstract
abstract TryAggregate :
values : Vector<'T> *
result : 'U byref -> bool
Parameters
- values
- Type: Extreme.MathematicsVectorT
A vector of values. - result
- Type: U
The result of the aggregation.
Return Value
Type:
Boolean if the aggregation produced a result;
otherwise
.
Reference