Groups the elements of a vector according to the specified grouping.
Namespace:
Extreme.DataAnalysis
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public Vector<T> AggregateInto<T>(
Vector<T> values,
IGrouping grouping,
Vector<T> result
)
Public Function AggregateInto(Of T) (
values As Vector(Of T),
grouping As IGrouping,
result As Vector(Of T)
) As Vector(Of T)
public:
generic<typename T>
Vector<T>^ AggregateInto(
Vector<T>^ values,
IGrouping^ grouping,
Vector<T>^ result
)
member AggregateInto :
values : Vector<'T> *
grouping : IGrouping *
result : Vector<'T> -> Vector<'T>
Parameters
- values
- Type: Extreme.MathematicsVectorT
The vector to aggregate. - grouping
- Type: Extreme.DataAnalysisIGrouping
A grouping. - result
- Type: Extreme.MathematicsVectorT
The vector that is to hold the result. May be .
Type Parameters
- T
Return Value
Type:
VectorT
Reference