Matrix<T>.AggregateColumnsListwise Method

Definition

Namespace: Numerics.NET
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0

Overload List

AggregateColumnsListwise(TypePreservingAggregatorGroup) Applies the specified aggregator to all the columns in the matrix, treating rows that contain any missing values as completely missing.
AggregateColumnsListwise<U>(AggregatorGroup<U>) Applies the specified aggregator to all the columns in the matrix, treating rows that contain any missing values as completely missing.

AggregateColumnsListwise<U>(AggregatorGroup<U>)

Applies the specified aggregator to all the columns in the matrix, treating rows that contain any missing values as completely missing.
C#
public Vector<U> AggregateColumnsListwise<U>(
	AggregatorGroup<U> aggregator
)

Parameters

aggregator  AggregatorGroup<U>
The aggregator to use.

Type Parameters

U
The type of the result of the aggregation.

Return Value

Vector<U>
A vector that contains the result of the aggregations indexed by the matrix's column index.

AggregateColumnsListwise(TypePreservingAggregatorGroup)

Applies the specified aggregator to all the columns in the matrix, treating rows that contain any missing values as completely missing.
C#
public Vector<T> AggregateColumnsListwise(
	TypePreservingAggregatorGroup aggregator
)

Parameters

aggregator  TypePreservingAggregatorGroup
The aggregator to use.

Return Value

Vector<T>
A vector that contains the result of the aggregations indexed by the matrix's column index.

See Also