Matrix<T>.AggregateColumns<U>(AggregatorGroup<U>[]) Method

Applies the specified aggregators to all the columns in the matrix.

Definition

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public Matrix<U> AggregateColumns<U>(
	params AggregatorGroup<U>[] aggregators
)

Parameters

aggregators  AggregatorGroup<U>[]
One or more aggregators to use.

Type Parameters

U
The type of the result of the aggregation.

Return Value

Matrix<U>
A 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.

See Also