G13DMF (PDF version)
G13 Chapter Contents
G13 Chapter Introduction
NAG Library Manual

NAG Library Routine Document

G13DMF

Note:  before using this routine, please read the Users' Note for your implementation to check the interpretation of bold italicised terms and other implementation-dependent details.

+ Contents

    1  Purpose
    7  Accuracy

1  Purpose

G13DMF calculates the sample cross-correlation (or cross-covariance) matrices of a multivariate time series.

2  Specification

SUBROUTINE G13DMF ( MATRIX, K, N, M, W, KMAX, WMEAN, R0, R, IFAIL)
INTEGER  K, N, M, KMAX, IFAIL
REAL (KIND=nag_wp)  W(KMAX,N), WMEAN(K), R0(KMAX,K), R(KMAX,KMAX,M)
CHARACTER(1)  MATRIX

3  Description

Let Wt = w1t,w2t,,wktT , for t=1,2,,n, denote n observations of a vector of k time series. The sample cross-covariance matrix at lag l is defined to be the k by k matrix C^l, whose (i,j)th element is given by
C^ijl=1nt=l+1nwit-l-w-iwjt-w-j,  l=0,1,2,,m, ​i=1,2,,k​ and ​j=1,2,,k,
where w-i and w-j denote the sample means for the ith and jth series respectively. The sample cross-correlation matrix at lag l is defined to be the k by k matrix R^l, whose i,jth element is given by
R^ ij l = C^ ij l C^ ii 0 C^ jj 0 ,   l=0,1,2,,m , ​ i=1,2,,k ​ and ​ j=1,2,,k .
The number of lags, m, is usually taken to be at most n/4.
If Wt follows a vector moving average model of order q, then it can be shown that the theoretical cross-correlation matrices Rl are zero beyond lag q. In order to help spot a possible cut-off point, the elements of R^l are usually compared to their approximate standard error of 1/n. For further details see, for example, Wei (1990).
The routine uses a single pass through the data to compute the means and the cross-covariance matrix at lag zero. The cross-covariance matrices at further lags are then computed on a second pass through the data.

4  References

Wei W W S (1990) Time Series Analysis: Univariate and Multivariate Methods Addison–Wesley
West D H D (1979) Updating mean and variance estimates: An improved method Comm. ACM 22 532–555

5  Parameters

1:     MATRIX – CHARACTER(1)Input
On entry: indicates whether the cross-covariance or cross-correlation matrices are to be computed.
MATRIX='V'
The cross-covariance matrices are computed.
MATRIX='R'
The cross-correlation matrices are computed.
Constraint: MATRIX='V' or 'R'.
2:     K – INTEGERInput
On entry: k, the dimension of the multivariate time series.
Constraint: K1.
3:     N – INTEGERInput
On entry: n, the number of observations in the series.
Constraint: N2.
4:     M – INTEGERInput
On entry: m, the number of cross-correlation (or cross-covariance) matrices to be computed. If in doubt set M=10. However it should be noted that M is usually taken to be at most N/4.
Constraint: 1M<N.
5:     W(KMAX,N) – REAL (KIND=nag_wp) arrayInput
On entry: Wit must contain the observation wit, for i=1,2,,k and t=1,2,,n.
6:     KMAX – INTEGERInput
On entry: the first dimension of the arrays W, R0 and R and the second dimension of the array R as declared in the (sub)program from which G13DMF is called.
Constraint: KMAXK.
7:     WMEAN(K) – REAL (KIND=nag_wp) arrayOutput
On exit: the means, w-i, for i=1,2,,k.
8:     R0(KMAX,K) – REAL (KIND=nag_wp) arrayOutput
On exit: if ij, then R0ij contains an estimate of the i,jth element of the cross-correlation (or cross-covariance) matrix at lag zero, R^ij0; if i=j, then if MATRIX='V', R0ii contains the variance of the ith series, C^ii0, and if MATRIX='R', R0ii contains the standard deviation of the ith series, C^ii0.
If IFAIL=2 and MATRIX='R', then on exit all the elements in R0 whose computation involves the zero variance are set to zero.
9:     R(KMAX,KMAX,M) – REAL (KIND=nag_wp) arrayOutput
On exit: Ri,j,l contains an estimate of the (i,j)th element of the cross-correlation (or cross-covariance) at lag l, R^ijl, for l=1,2,,m, i=1,2,,k and j=1,2,,k.
If IFAIL=2 and MATRIX='R', then on exit all the elements in R whose computation involves the zero variance are set to zero.
10:   IFAIL – INTEGERInput/Output
On entry: IFAIL must be set to 0, -1​ or ​1. If you are unfamiliar with this parameter you should refer to Section 3.3 in the Essential Introduction for details.
For environments where it might be inappropriate to halt program execution when an error is detected, the value -1​ or ​1 is recommended. If the output of error messages is undesirable, then the value 1 is recommended. Otherwise, if you are not familiar with this parameter, the recommended value is 0. When the value -1​ or ​1 is used it is essential to test the value of IFAIL on exit.
On exit: IFAIL=0 unless the routine detects an error or a warning has been flagged (see Section 6).

6  Error Indicators and Warnings

If on entry IFAIL=0 or -1, explanatory error messages are output on the current error message unit (as defined by X04AAF).
Errors or warnings detected by the routine:
IFAIL=1
On entry,MATRIX'V' or 'R',
orK<1,
orN<2,
orM<1,
orMN,
orKMAX<K.
IFAIL=2
On entry, at least one of the k series is such that all its elements are practically equal giving zero (or near zero) variance. In this case if MATRIX='R' all the correlations in R0 and R involving this variance are set to zero.

7  Accuracy

For a discussion of the accuracy of the one-pass algorithm used to compute the sample cross-covariances at lag zero see West (1979). For the other lags a two-pass algorithm is used to compute the cross-covariances; the accuracy of this algorithm is also discussed in West (1979). The accuracy of the cross-correlations will depend on the accuracy of the computed cross-covariances.

8  Further Comments

The time taken is roughly proportional to mnk2.

9  Example

This program computes the sample cross-correlation matrices of two time series of length 48, up to lag 10. It also prints the cross-correlation matrices together with plots of symbols indicating which elements of the correlation matrices are significant. Three * represent significance at the 0.5% level, two * represent significance at the 1% level and a single * represents significance at the 5% level. The * are plotted above or below the line depending on whether the elements are significant in the positive or negative direction.

9.1  Program Text

Program Text (g13dmfe.f90)

9.2  Program Data

Program Data (g13dmfe.d)

9.3  Program Results

Program Results (g13dmfe.r)


G13DMF (PDF version)
G13 Chapter Contents
G13 Chapter Introduction
NAG Library Manual

© The Numerical Algorithms Group Ltd, Oxford, UK. 2012