BinaryAccumulatingAggregator<T1, T2, TResult, TIntermediate, TConverter1, TConverter2, TAccumulator> Constructor

Constructs a new accumulating aggregator.

Definition

Namespace: Numerics.NET.DataAnalysis
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0
C#
public BinaryAccumulatingAggregator(
	Func<TAccumulator, TResult> transformation,
	AggregatorAttributes attributes,
	TResult emptyValue
)

Parameters

transformation  Func<TAccumulator, TResult>
A delegate that performs the transformation of the result of the accumulation to produce the final result.
attributes  AggregatorAttributes
The attributes of the aggregator.
emptyValue  TResult
 

Remarks

Incremental is automatically added to attributes.

See Also