Aggregates the specified values according to the specified grouping.
Namespace:
Extreme.DataAnalysis
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public IVector AggregateInto<U>(
IVector values,
IGrouping grouping,
IVector result
)
Public Function AggregateInto(Of U) (
values As IVector,
grouping As IGrouping,
result As IVector
) As IVector
public:
generic<typename U>
IVector^ AggregateInto(
IVector^ values,
IGrouping^ grouping,
IVector^ result
)
member AggregateInto :
values : IVector *
grouping : IGrouping *
result : IVector -> IVector
Parameters
- values
- Type: Extreme.MathematicsIVector
A vector of values. - grouping
- Type: Extreme.DataAnalysisIGrouping
An object that specifies the grouping of elements
of values. - result
- Type: Extreme.MathematicsIVector
The result of the aggregation.
Type Parameters
- U
- The element type of values.
Return Value
Type:
IVectorA reference to
result.
Reference