Aggregator<T, TResult>.AggregateListwiseInto Method

Note: This API is now obsolete.
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#
[ObsoleteAttribute("Use the AggregateColumnsListwise method instead.")]
public Vector<TResult> AggregateListwiseInto(
	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