WindowFilter Constructor

Definition

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

Overload List

WindowFilter(Int32) Creates a new window filter of the specified length.
WindowFilter(Int32, Int32) Creates a new window filter of the specified length.

WindowFilter(Int32)

Creates a new window filter of the specified length.
C#
public WindowFilter(
	int length
)

Parameters

length  Int32
The length of the window.

Remarks

The length of the actual window may be smaller if the number of observations in the variable or collection is less than length.

WindowFilter(Int32, Int32)

Creates a new window filter of the specified length.
C#
public WindowFilter(
	int length,
	int maxUnfilteredLength
)

Parameters

length  Int32
The length of the window.
maxUnfilteredLength  Int32
The maximum number of observations to keep. If the variable or collection contains more observations, then the oldest observations are deleted.

Remarks

The length of the actual window may be smaller if the number of observations in the variable or collection is less than length.

See Also