Sets the initial values for the moving average terms to the q values in ma.

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

Syntax

C#
public void SetMA(
	double[] ma
)
Visual Basic (Declaration)
Public Sub SetMA ( _
	ma As Double() _
)
Visual C++
public:
void SetMA(
	array<double>^ ma
)

Parameters

ma
Type: array< System..::.Double >[]()[]
A double array of length q containing the initial values for the moving average terms. If this method is not called, initial values are computed by method of moments in the ARMA class.

See Also