Boundary Interval Behavior Enumeration
Enumerates how segments at the boundaries of subdivided series are handled.
Definition
Namespace: Numerics.NET.DataAnalysis
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.2
C#
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.2
public enum BoundaryIntervalBehavior
Remarks
The CompleteAndInclude value is used most often with time-related data. For example, if monthly data is requested, but the first interval does not cover an entire month, specifying CompleteAndInclude for the start behavior would indicate the entire first month should be included.
Members
Exclude | 0 | The entire interval is excluded. |
Include | 1 | The interval is included. |
CompleteAndInclude | 2 | The interval is extended to a full larger interval and the extended interval is included. |