Applies the specified aggregator to all the rows in the matrix.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public Vector<U> AggregateRows<U>(
AggregatorGroup<U> aggregator
)
Public Function AggregateRows(Of U) (
aggregator As AggregatorGroup(Of U)
) As Vector(Of U)
public:
generic<typename U>
Vector<U>^ AggregateRows(
AggregatorGroup<U>^ aggregator
)
member AggregateRows :
aggregator : AggregatorGroup<'U> -> Vector<'U>
Parameters
- aggregator
- Type: Extreme.DataAnalysisAggregatorGroupU
The aggregator to use.
Type Parameters
- U
- The type of the result of the aggregation.
Return Value
Type:
VectorUA vector that contains the result of the aggregations indexed
by the matrix's row index.
Reference