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