Aggregator<T, TResult>.AggregateColumnsListwise Method

Aggregates the columns of a matrix disregarding the entire row if any of its entries are missing.

Definition

Namespace: Numerics.NET.DataAnalysis
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0
C#
public virtual Vector<TResult> AggregateColumnsListwise(
	Matrix<T> values,
	Vector<TResult>? result
)

Parameters

values  Matrix<T>
The matrix whose columns to aggregate.
result  Vector<TResult>
The vector that is to hold the result. May be null.

Return Value

Vector<TResult>

See Also