Grouping.ExpandingWindow Method

Definition

Namespace: Extreme.DataAnalysis
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23

Overload List

ExpandingWindow(IIndex) Constructs a grouping that represents an expanding window.
ExpandingWindow<T>(Index<T>) Constructs a grouping that represents an expanding window.

Grouping.ExpandingWindow(IIndex)

Constructs a grouping that represents an expanding window.
C#
public static IGrouping ExpandingWindow(
	IIndex index
)

Parameters

index  IIndex
The index the grouping is over.

Return Value

IGrouping
A grouping object that represents the expanding moving window.

Exceptions

Grouping.ExpandingWindow<T>(Index<T>)

Constructs a grouping that represents an expanding window.
C#
public static Grouping<T> ExpandingWindow<T>(
	Index<T> index
)

Parameters

index  Index<T>
The index the grouping is over.

Type Parameters

T

Return Value

Grouping<T>
A grouping object that represents the expanding moving window.

Exceptions

See Also