Tests whether the coefficients in ar are stationary.

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

Syntax

C#
public bool IsStationary(
	double[] ar
)
Visual Basic (Declaration)
Public Function IsStationary ( _
	ar As Double() _
) As Boolean
Visual C++
public:
bool IsStationary(
	array<double>^ ar
)

Parameters

ar
Type: array< System..::.Double >[]()[]
A double array containing the coefficients for the autoregressive terms in an ARMA model.

Return Value

A bool scalar equal to true if the coefficients in ar are stationary and false otherwise.

See Also