Previous Page | Next Page

Language Reference

FDIF Call

CALL FDIF( out, series, d ) ;

The FDIF subroutine computes a fractionally differenced process. The input arguments to the FDIF subroutine are as follows:

series

specifies a time series with length.

d

specifies a fractional differencing order. This argument is required; the value of should be in the open interval excluding zero.

The FDIF subroutine returns the following value:

out

is an vector that contains the fractionally differenced process.

As an example, consider an ARFIMA() process

     

Let ; that is, follows an ARMA(1,1). The following statements compute the filtered series :

d = 0.3;
phi = 0.5;
theta = -0.1;
call farmasim(yt, d, phi, theta) n=10;
call fdif(zt, yt, d);
print zt;

Figure 23.106 A Fractionally Differenced Process
zt
.
-0.641424
-0.914292
-0.866228
-0.568121
-0.392878
0.5342625
0.5967797
-0.227465
0.925339

Previous Page | Next Page | Top of Page