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 virtual Vector<U> AggregateInto(
Vector<T> values1,
Vector<T> values2,
IGrouping grouping,
Vector<U> result
)
Public Overridable Function AggregateInto (
values1 As Vector(Of T),
values2 As Vector(Of T),
grouping As IGrouping,
result As Vector(Of U)
) As Vector(Of U)
public:
virtual Vector<U>^ AggregateInto(
Vector<T>^ values1,
Vector<T>^ values2,
IGrouping^ grouping,
Vector<U>^ result
)
abstract AggregateInto :
values1 : Vector<'T> *
values2 : Vector<'T> *
grouping : IGrouping *
result : Vector<'U> -> Vector<'U>
override AggregateInto :
values1 : Vector<'T> *
values2 : Vector<'T> *
grouping : IGrouping *
result : Vector<'U> -> Vector<'U>
Parameters
- values1
- Type: Extreme.MathematicsVectorT
A vector of values. - values2
- Type: Extreme.MathematicsVectorT
A vector of values. - grouping
- Type: Extreme.DataAnalysisIGrouping
A grouping. - result
- Type: Extreme.MathematicsVectorU
The vector that is to hold the result. May be .
Return Value
Type:
VectorU
Reference