NAG FL Interface
g13agf (uni_arima_update)
1
Purpose
g13agf accepts a series of new observations of a time series, the model of which is already fully specified, and updates the ‘state set’ information for use in constructing further forecasts. The previous specifications of the time series model should have been obtained by using
g13aef or
g13aff to estimate the relevant parameters. The supplied state set will originally have been produced by
g13aef or
g13aff, but may since have been updated by earlier calls to
g13agf.
A set of residuals corresponding to the new observations is returned. These may be of use in checking that the new observations conform to the previously fitted model.
2
Specification
Fortran Interface
Subroutine g13agf ( |
st, nst, mr, par, npar, c, anx, nuv, anexr, wa, nwa, ifail) |
Integer, Intent (In) |
:: |
nst, mr(7), npar, nuv, nwa |
Integer, Intent (Inout) |
:: |
ifail |
Real (Kind=nag_wp), Intent (In) |
:: |
par(npar), c, anx(nuv) |
Real (Kind=nag_wp), Intent (Inout) |
:: |
st(nst) |
Real (Kind=nag_wp), Intent (Out) |
:: |
anexr(nuv), wa(nwa) |
|
C Header Interface
#include <nag.h>
void |
g13agf_ (double st[], const Integer *nst, const Integer mr[], const double par[], const Integer *npar, const double *c, const double anx[], const Integer *nuv, double anexr[], double wa[], const Integer *nwa, Integer *ifail) |
|
C++ Header Interface
#include <nag.h> extern "C" {
void |
g13agf_ (double st[], const Integer &nst, const Integer mr[], const double par[], const Integer &npar, const double &c, const double anx[], const Integer &nuv, double anexr[], double wa[], const Integer &nwa, Integer &ifail) |
}
|
The routine may be called by the names g13agf or nagf_tsa_uni_arima_update.
3
Description
The time series model is specified as outlined in Section 3 in
g13aef or
g13aff. This also describes how the state set, which contains the minimum amount of time series information needed to construct forecasts, is made up of
-
(i)the differenced series (uncorrected for the constant ), for ,
-
(ii)the values required to reconstitute the original series from the differenced series ,
-
(iii)the intermediate series
, for
, and
-
(iv)the residual series , for .
If the number of original undifferenced observations was , then and .
To update the state set, given a number of new undifferenced observations , , the four series above are first reconstituted.
Differencing and residual calculation operations are then applied to the new observations and new values of and are derived.
The first values in these three series are then discarded and a new state set is obtained.
The residuals in the series corresponding to the new observations are preserved in an output array. The parameters of the time series model are not changed in this routine.
4
References
None.
5
Arguments
-
1:
– Real (Kind=nag_wp) array
Input/Output
-
On entry: the state set derived from
g13aef or
g13aff, or as modified using earlier calls of
g13agf.
On exit: the updated values of the state set.
-
2:
– Integer
Input
-
On entry: the number of values in the state set array
st.
Constraint:
. (As returned by
g13aef or
g13aff).
-
3:
– Integer array
Input
-
On entry: the orders vector of the ARIMA model, in the usual notation.
Constraints:
- ;
- ;
- ;
- if , ;
- if , .
-
4:
– Real (Kind=nag_wp) array
Input
-
On entry: the estimates of the values of the parameters, the values of the parameters, the values of the parameters and the values of the parameters in the model – in that order, using the usual notation.
-
5:
– Integer
Input
-
On entry: the number of , , and parameters in the model.
Constraint:
.
-
6:
– Real (Kind=nag_wp)
Input
-
On entry: the constant to be subtracted from the differenced data.
-
7:
– Real (Kind=nag_wp) array
Input
-
On entry: the new undifferenced observations which are to be used to update
st.
-
8:
– Integer
Input
-
On entry:
, the number of new observations in
anx.
-
9:
– Real (Kind=nag_wp) array
Output
-
On exit: the residuals corresponding to the new observations in
anx.
-
10:
– Real (Kind=nag_wp) array
Workspace
-
11:
– Integer
Input
-
On entry: the dimension of the array
wa as declared in the (sub)program from which
g13agf is called.
Constraint:
.
-
12:
– Integer
Input/Output
-
On entry:
ifail must be set to
,
or
to set behaviour on detection of an error; these values have no effect when no error is detected.
A value of causes the printing of an error message and program execution will be halted; otherwise program execution continues. A value of means that an error message is printed while a value of means that it is not.
If halting is not appropriate, the value
or
is recommended. If message printing is undesirable, then the value
is recommended. Otherwise, the value
is recommended.
When the value or is used it is essential to test the value of ifail on exit.
On exit:
unless the routine detects an error or a warning has been flagged (see
Section 6).
6
Error Indicators and Warnings
If on entry
or
, explanatory error messages are output on the current error message unit (as defined by
x04aaf).
Errors or warnings detected by the routine:
-
On entry, .
Constraint: .
The orders vector
mr is invalid.
-
On entry, .
Constraint: .
-
On entry, .
Constraint: .
-
On entry, and the minimum size .
Constraint: .
An unexpected error has been triggered by this routine. Please
contact
NAG.
See
Section 7 in the Introduction to the NAG Library FL Interface for further information.
Your licence key may have expired or may not have been installed correctly.
See
Section 8 in the Introduction to the NAG Library FL Interface for further information.
Dynamic memory allocation failed.
See
Section 9 in the Introduction to the NAG Library FL Interface for further information.
7
Accuracy
The computations are believed to be stable.
8
Parallelism and Performance
g13agf is not threaded in any implementation.
The time taken by g13agf is approximately proportional to .
10
Example
The following program is based on data derived from a study of monthly airline passenger totals (in thousands) to which a logarithmic transformation had been applied. The time series model was based on seasonal and non-seasonal differencing both of order
, with seasonal period
. The number of parameters estimated was two: a non-seasonal moving average parameter
with value
and a seasonal moving average parameter
with value
. There was no constant correction. These, together with the state set array, were obtained using
g13aef.
Twelve new observations are supplied. The routine updates the state set and outputs a set of residuals corresponding to the new observations.
10.1
Program Text
10.2
Program Data
10.3
Program Results