nag_rand_arma (g05phc) generates a realization of a univariate time series from an autoregressive moving average (ARMA) model. The realization may be continued or a new realization generated at subsequent calls to nag_rand_arma (g05phc).
Let the vector
, denote a time series which is assumed to follow an autoregressive moving average (ARMA) model of the form:
where
, is a residual series of independent random perturbations assumed to be Normally distributed with zero mean and variance
. The parameters
, for
, are called the autoregressive (AR) parameters, and
, for
, the moving average (MA) parameters. The parameters in the model are thus the
values, the
values, the mean
and the residual variance
.
nag_rand_arma (g05phc) sets up a reference vector containing initial values corresponding to a stationary position using the method described in
Tunnicliffe–Wilson (1979). The function can then return a realization of
. On a successful exit, the recent history is updated and saved in the reference vector
r so that nag_rand_arma (g05phc) may be called again to generate a realization of
, etc. See the description of the argument
mode in
Section 5 for details.
One of the initialization functions
nag_rand_init_repeatable (g05kfc) (for a repeatable sequence if computed sequentially) or
nag_rand_init_nonrepeatable (g05kgc) (for a non-repeatable sequence) must be called prior to the first call to nag_rand_arma (g05phc).
Tunnicliffe–Wilson G (1979) Some efficient computational procedures for high order ARMA models J. Statist. Comput. Simulation 8 301–309
- 1:
mode – Nag_ModeRNGInput
On entry: a code for selecting the operation to be performed by the function.
- Set up reference vector only.
- Generate terms in the time series using reference vector set up in a prior call to nag_rand_arma (g05phc).
- Set up reference vector and generate terms in the time series.
Constraint:
, or .
- 2:
n – IntegerInput
On entry: , the number of observations to be generated.
Constraint:
.
- 3:
xmean – doubleInput
On entry: the mean of the time series.
- 4:
ip – IntegerInput
On entry: , the number of autoregressive coefficients supplied.
Constraint:
.
- 5:
phi[ip] – const doubleInput
On entry: the autoregressive coefficients of the model, .
- 6:
iq – IntegerInput
On entry: , the number of moving average coefficients supplied.
Constraint:
.
- 7:
theta[iq] – const doubleInput
On entry: the moving average coefficients of the model, .
- 8:
avar – doubleInput
On entry: , the variance of the Normal perturbations.
Constraint:
.
- 9:
r[lr] – doubleCommunication Array
On entry: if , the reference vector from the previous call to nag_rand_arma (g05phc).
On exit: the reference vector.
- 10:
lr – IntegerInput
On entry: the dimension of the array
r.
Constraint:
.
- 11:
state[] – IntegerCommunication Array
-
Note: the dimension,
, of this array is dictated by the requirements of associated functions that must have been previously called. This array MUST be the same array passed as argument
state in the previous call to
nag_rand_init_repeatable (g05kfc) or
nag_rand_init_nonrepeatable (g05kgc).
On entry: contains information on the selected base generator and its current state.
On exit: contains updated information on the state of the generator.
- 12:
var – double *Output
On exit: the proportion of the variance of a term in the series that is due to the moving-average (error) terms in the model. The smaller this is, the nearer is the model to non-stationarity.
- 13:
x[n] – doubleOutput
On exit: contains the next observations from the time series.
- 14:
fail – NagError *Input/Output
-
The NAG error argument (see
Section 3.6 in the Essential Introduction).
Any errors in the reference vector's initial values should be very much smaller than the error term; see
Tunnicliffe–Wilson (1979).
Not applicable.
Note: The reference vector,
r, contains a copy of the recent history of the series. If attempting to re-initialize the series by calling
nag_rand_init_repeatable (g05kfc) or
nag_rand_init_nonrepeatable (g05kgc) a call to nag_rand_arma (g05phc) with
must also be made. In the repeatable case the calls to nag_rand_arma (g05phc) should be performed in the same order (at the same point(s) in simulation) every time
nag_rand_init_repeatable (g05kfc) is used. When the generator state is saved and restored using the argument
state, the time series reference vector must be saved and restored as well.
The ARMA model for a time series can also be written as:
where
- is the observed value of the time series at time ,
- is the number of autoregressive parameters, ,
- is the number of moving average parameters, ,
- is the mean of the time series,
This is related to the form given in
Section 3 by:
- ,
- ,
- ,
- ,
- ,
- .
This example generates values for an autoregressive model given by
where
is a series of independent random Normal perturbations with variance
. The random number generators are initialized by
nag_rand_init_repeatable (g05kfc) and then nag_rand_arma (g05phc) is called to initialize a reference vector and generate a sample of ten observations.
None.