Applies the specified aggregators to all the columns in the matrix.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public Matrix<U> AggregateColumns<U>(
params AggregatorGroup<U>[] aggregators
)
Public Function AggregateColumns(Of U) (
ParamArray aggregators As AggregatorGroup(Of U)()
) As Matrix(Of U)
public:
generic<typename U>
Matrix<U>^ AggregateColumns(
... array<AggregatorGroup<U>^>^ aggregators
)
member AggregateColumns :
aggregators : AggregatorGroup<'U>[] -> Matrix<'U>
Parameters
- aggregators
- Type: Extreme.DataAnalysisAggregatorGroupU
One or more aggregators to use.
Type Parameters
- U
- The type of the result of the aggregation.
Return Value
Type:
MatrixUA new matrix that contains the result of the aggregations
with rows indexed by the names of the aggregators and columns indexed
by the matrix's column index.
Reference