g13aj applies a fully specified seasonal ARIMA model to an observed time series, generates the state set for forecasting and (optionally) derives a specified number of forecasts together with their standard deviations.

Syntax

C#
public static void g13aj(
	int[] mr,
	double[] par,
	double c,
	int kfc,
	double[] x,
	int nx,
	out double rms,
	double[] st,
	out int nst,
	int nfv,
	double[] fva,
	double[] fsd,
	int[] isf,
	out int ifail
)
Visual Basic
Public Shared Sub g13aj ( _
	mr As Integer(), _
	par As Double(), _
	c As Double, _
	kfc As Integer, _
	x As Double(), _
	nx As Integer, _
	<OutAttribute> ByRef rms As Double, _
	st As Double(), _
	<OutAttribute> ByRef nst As Integer, _
	nfv As Integer, _
	fva As Double(), _
	fsd As Double(), _
	isf As Integer(), _
	<OutAttribute> ByRef ifail As Integer _
)
Visual C++
public:
static void g13aj(
	array<int>^ mr, 
	array<double>^ par, 
	double c, 
	int kfc, 
	array<double>^ x, 
	int nx, 
	[OutAttribute] double% rms, 
	array<double>^ st, 
	[OutAttribute] int% nst, 
	int nfv, 
	array<double>^ fva, 
	array<double>^ fsd, 
	array<int>^ isf, 
	[OutAttribute] int% ifail
)
F#
static member g13aj : 
        mr : int[] * 
        par : float[] * 
        c : float * 
        kfc : int * 
        x : float[] * 
        nx : int * 
        rms : float byref * 
        st : float[] * 
        nst : int byref * 
        nfv : int * 
        fva : float[] * 
        fsd : float[] * 
        isf : int[] * 
        ifail : int byref -> unit 

Parameters

mr
Type: array<System..::..Int32>[]()[][]
An array of size [7]
On entry: the orders vector p,d,q,P,D,Q,s of the ARIMA model, in the usual notation.
Constraints:
  • p,d,q,P,D,Q,s0;
  • p+q+P+Q>0;
  • s1;
  • if s=0, P+D+Q=0;
  • if s>1, P+D+Q>0;
  • d+s×P+Dn;
  • p+d-q+s×P+D-Qn.
par
Type: array<System..::..Double>[]()[][]
An array of size [dim1]
Note: dim1 must satisfy the constraint: _npar=p+q+P+Q
On entry: the p values of the ϕ parameters, the q values of the θ parameters, the P values of the Φ parameters, and the Q values of the Θ parameters, in that order.
c
Type: System..::..Double
On entry: c, the expected value of the differenced series (i.e., c is the constant correction). Where there is no constant term, c must be set to 0.0.
kfc
Type: System..::..Int32
On entry: must be set to 0 if c was not estimated, and 1 if c was estimated. This is irrespective of whether or not c=0.0. The only effect is that the residual degrees of freedom are one greater when kfc=0. Assuming the supplied time series to be the same as that to which the model was originally fitted, this ensures an unbiased estimate of the residual mean-square.
Constraint: kfc=0 or 1.
x
Type: array<System..::..Double>[]()[][]
An array of size [nx]
On entry: the n values of the original undifferenced time series.
nx
Type: System..::..Int32
On entry: n, the length of the original undifferenced time series.
rms
Type: System..::..Double%
On exit: the residual variance (mean square) associated with the model.
st
Type: array<System..::..Double>[]()[][]
An array of size [ist]
On exit: the nst values of the state set.
nst
Type: System..::..Int32%
On exit: the number of values in the state set array st.
nfv
Type: System..::..Int32
On entry: the required number of forecasts. If nfv0, no forecasts will be computed.
fva
Type: array<System..::..Double>[]()[][]
An array of size [ifv]
On exit: if nfv>0, fva contains the nfv forecast values relating to the original undifferenced time series.
fsd
Type: array<System..::..Double>[]()[][]
An array of size [ifv]
On exit: if nfv>0, fsd contains the estimated standard errors of the nfv forecast values.
isf
Type: array<System..::..Int32>[]()[][]
An array of size [4]
On exit: contains validity indicators, one for each of the four possible parameter types in the model (autoregressive, moving average, seasonal autoregressive, seasonal moving average), in that order.
Each indicator has the interpretation:
-1 On entry the set of parameter values of this type does not satisfy the stationarity or invertibility test conditions.
-0 No parameter of this type is in the model.
-1 Valid parameter values of this type have been supplied.
ifail
Type: System..::..Int32%
On exit: ifail=0 unless the method detects an error or a warning has been flagged (see [Error Indicators and Warnings]).

Description

The time series x1,x2,,xn supplied to the method is assumed to follow a seasonal autoregressive integrated moving average (ARIMA) model with known parameters.
The model is defined by the following relations.
(a) dsDxt-c=wt where dsDxt is the result of applying non-seasonal differencing of order d and seasonal differencing of seasonality s and order D to the series xt, and c is a constant.
(b) wt=Φ1wt-s+Φ2wt-2×s++ΦPwt-P×s+et-Θ1et-s-Θ2et-2×s--ΘQet-Q×s. 
This equation describes the seasonal structure with seasonal period s; in the absence of seasonality it reduces to wt=et.
(c) et=ϕ1et-1+ϕ2et-2++ϕpet-p+at-θ1at-1-θ2at-2--θqat-q. 
This equation describes the non-seasonal structure.
Given the series, the constant c, and the model parameters Φ, Θ, ϕ, θ, the method computes the following.
(a) The state set required for forecasting. This contains the minimum amount of information required for forecasting and comprises:
(i) the differenced series wt, for N-s×PtN;
(ii) the d+D×s values required to reconstitute the original series xt from the differenced series wt;
(iii) the intermediate series et, for N-maxp,Q×s<tN;
(iv) the residual series at, for N-q<tN, where N=n-d+D×s.
(b) A set of L forecasts of xt and their estimated standard errors, st, for t=n+1,,n+L (L may be zero).
The forecasts and estimated standard errors are generated from the state set, and are identical to those that would be produced from the same state set by g13ah.
Use of g13aj should be confined to situations in which the state set for forecasting is unknown. Forecasting from the series requires recalculation of the state set and this is relatively expensive.

References

Box G E P and Jenkins G M (1976) Time Series Analysis: Forecasting and Control (Revised Edition) Holden–Day

Error Indicators and Warnings

Errors or warnings detected by the method:
Some error messages may refer to parameters that are dropped from this interface (NPAR) In these cases, an error in another parameter has usually caused an incorrect value to be inferred.
ifail=1
On entry,the orders vector mr is invalid (check the constraints in [Parameters]),
orkfc0 or 1.
ifail=2
On entry, nx-d-D×s_npar+kfc, i.e., the number of terms in the differenced series is not greater than the number of parameters in the model. The model is over-parameterised.
ifail=3
On entry, the workspace array w is too small.
ifail=4
On entry, the state set array st is too small. It must be at least as large as the exit value of nst.
ifail=5
This indicates a failure in (F04ASF not in this release) which is used to solve the equations giving estimates of the backforecasts.
ifail=6
On entry, valid values were not supplied for all parameter types in the model. Inspect array isf for further information on the parameter type(s) in error.
ifail=7
On entry,ifv<max1,nfv.
ifail=-9000
An error occured, see message report.
ifail=-1000
The array lengths are not the same for arrays
ifail=-8000
Negative dimension for array value
ifail=-6000
Invalid Parameters value

Accuracy

The computations are believed to be stable.

Parallelism and Performance

None.

Further Comments

The time taken by g13aj is approximately proportional to n and the square of the number of backforecasts derived.

Example

See Also