g13bb filters a time series by a transfer function model.
Syntax
C# |
---|
public static void g13bb( double[] y, int ny, int[] mr, int nmr, double[] par, double cy, double[] b, out int ifail ) |
Visual Basic |
---|
Public Shared Sub g13bb ( _ y As Double(), _ ny As Integer, _ mr As Integer(), _ nmr As Integer, _ par As Double(), _ cy As Double, _ b As Double(), _ <OutAttribute> ByRef ifail As Integer _ ) |
Visual C++ |
---|
public: static void g13bb( array<double>^ y, int ny, array<int>^ mr, int nmr, array<double>^ par, double cy, array<double>^ b, [OutAttribute] int% ifail ) |
F# |
---|
static member g13bb : y : float[] * ny : int * mr : int[] * nmr : int * par : float[] * cy : float * b : float[] * ifail : int byref -> unit |
Parameters
- y
- Type: array<System..::..Double>[]()[][]An array of size [ny]On entry: the backforecasts starting with backforecast at time to backforecast at time followed by the time series starting at time , where . If there are no backforecasts either because the ARIMA model for the time series is not known or because it is known but has no moving average terms, then the time series starts at the beginning of y.
- ny
- Type: System..::..Int32On entry: the total number of backforecasts and time series data points in array y.Constraint: .
- mr
- Type: array<System..::..Int32>[]()[][]An array of size [nmr]On entry: the orders vector for the filtering transfer function model followed by the orders vector for the ARIMA model for the time series if the latter is known. The transfer function model orders appear in the standard form as given in the G13 class. Note that if the ARIMA model for the time series is supplied then the method will assume that the first values of the array y are backforecasts.Constraints:the filtering model is restricted in the following way:
- .
the ARIMA model for the time series is restricted in the following ways:- , for ;
- if , ;
- if , ;
- .
- nmr
- Type: System..::..Int32On entry: the number of values supplied in the array mr. It takes the value if no ARIMA model for the time series is supplied but otherwise it takes the value . Thus nmr acts as an indicator as to whether backforecasting can be carried out.Constraint: or .
- par
- Type: array<System..::..Double>[]()[][]An array of size [dim1]Note: dim1 must satisfy the constraint:
- if , ;
- if , .
- if , ;
- if , .
On entry: the parameters of the filtering transfer function model followed by the parameters of the ARIMA model for the time series. In the transfer function model the parameters are in the standard order of MA-like followed by AR-like operator parameters. In the ARIMA model the parameters are in the standard order of non-seasonal AR and MA followed by seasonal AR and MA.
- cy
- Type: System..::..Double
- b
- Type: array<System..::..Double>[]()[][]An array of size [nb]On exit: the filtered output series. If the ARIMA model for the time series was known, and hence backforecasts were supplied in y, then b contains ‘filtered’ backforecasts followed by the filtered series. Otherwise, the filtered series begins at the start of b just as the original series began at the start of y. In either case, if the value of the series at time is held in , then the filtered value at time is held in .
- ifail
- Type: System..::..Int32%On exit: unless the method detects an error or a warning has been flagged (see [Error Indicators and Warnings]).
Description
From a given series a new series is calculated using a supplied (filtering) transfer function model according to the equation
As in the use of g13ba, large transient errors may arise in the early values of due to ignorance of for , and two possibilities are allowed.
(1) |
(i) | The equation (1) is applied from so all terms in on the right-hand side of (1) are known, the unknown set of values for being taken as zero. |
(ii) | The unknown values of for are estimated by backforecasting exactly as for g13ba. |
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.
- A supplied model has parameter values which have failed the validity test.
- The supplied time series is too short to carry out the requested filtering successfully.
- This only occurs when an ARIMA model for the time series has been supplied. The matrix which is used to solve for the starting values for MA filtering is singular.
- Internal memory allocation failed.
Accuracy
Accuracy and stability are high except when the AR-like parameters are close to the invertibility boundary. All calculations are performed in basic precision except for one inner product type calculation which on machines of low precision is performed in additional precision.
Parallelism and Performance
None.
Further Comments
The time taken by g13bb is roughly proportional to the product of the length of the series and number of parameters in the filtering model with appreciable increase if an ARIMA model is supplied for the time series.
Example
This example reads a time series of length . It reads one univariate ARIMA model for the series and the filtering transfer function model. initial backforecasts are required and these are calculated by a call to
g13aj
.
The backforecasts are inserted at the start of the series and g13bb is called to perform the filtering.
Example program (C#): g13bbe.cs