BinaryAggregatorGroup<TResult> Constructor

Definition

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

Overload List

BinaryAggregatorGroup<TResult>(String) Constructs a new aggregator group.
BinaryAggregatorGroup<TResult>(String, TResult) Constructs a new aggregator group.

BinaryAggregatorGroup<TResult>(String)

Constructs a new aggregator group.
C#
protected BinaryAggregatorGroup(
	string name
)

Parameters

name  String
The name of the aggregator.

Remarks

The name of the aggregator is used as the column key when multiple aggregators are applied to the same vector.

BinaryAggregatorGroup<TResult>(String, TResult)

Constructs a new aggregator group.
C#
protected BinaryAggregatorGroup(
	string name,
	TResult emptyValue
)

Parameters

name  String
The name of the aggregator.
emptyValue  TResult
 

Remarks

The name of the aggregator is used as the column key when multiple aggregators are applied to the same vector.

See Also