Matrix<T>.AggregateRows<U>(Func<Vector<T>, U>) Method

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

Definition

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public Vector<U> AggregateRows<U>(
	Func<Vector<T>, U> aggregator
)

Parameters

aggregator  Func<Vector<T>, U>
A function that aggregates the elements of a vector into a value of type U.

Type Parameters

U
The type of the result of the aggregation.

Return Value

Vector<U>
A new matrix that contains the result of the aggregations with columns indexed by the names of the aggregators and rows indexed by the matrix's row index.

See Also