Sets the order of the moving average parameters.

Namespace: Imsl.Stat
Assembly: ImslCS (in ImslCS.dll) Version: 6.5.0.0

Syntax

C#
public void SetMALags(
	int[] maLags
)
Visual Basic (Declaration)
Public Sub SetMALags ( _
	maLags As Integer() _
)
Visual C++
public:
void SetMALags(
	array<int>^ maLags
)

Parameters

maLags
Type: array< System..::.Int32 >[]()[]
An int array of length q containing the order of the moving average parameters.

Remarks

The maLags elements must be greater than or equal to 1. By default, maLags = [1, 2, ..., q].

See Also