AggregatorAttributes Enumeration

Enumerates properties of aggregators used to optimize their application.

Definition

Namespace: Numerics.NET.DataAnalysis
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0
C#
public enum AggregatorAttributes

Members

None0 The aggregator has no special attributes.
Incremental1 The aggregator can compute values incrementally.
ZerosAffectResult2 Adding or removing zeros from the input sequence can lead to a different result.
MissingValuesAffectResult4 Adding or removing missing values from the input sequence can lead to a different result.
OrderingAffectsResult8 Changing the order of the elements in the input sequence can lead to a different result.
Default14 Default attributes. The aggregator has no known properties that can be optimized for.
RequiresWorkspace22 The aggregator requires a copy of the input as workspace.
EmptyGroupsHaveValue50 The aggregator produces a result even when the input is empty.

See Also