NAG FL Interface
g13dmf (multi_​corrmat_​cross)

Settings help

FL Name Style:


FL Specification Language:


1 Purpose

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

2 Specification

Fortran Interface
Subroutine g13dmf ( matrix, k, n, m, w, kmax, wmean, r0, r, ifail)
Integer, Intent (In) :: k, n, m, kmax
Integer, Intent (Inout) :: ifail
Real (Kind=nag_wp), Intent (In) :: w(kmax,n)
Real (Kind=nag_wp), Intent (Inout) :: r0(kmax,k), r(kmax,kmax,m)
Real (Kind=nag_wp), Intent (Out) :: wmean(k)
Character (1), Intent (In) :: matrix
C Header Interface
#include <nag.h>
void  g13dmf_ (const char *matrix, const Integer *k, const Integer *n, const Integer *m, const double w[], const Integer *kmax, double wmean[], double r0[], double r[], Integer *ifail, const Charlen length_matrix)
The routine may be called by the names g13dmf or nagf_tsa_multi_corrmat_cross.

3 Description

Let Wt = (w1t,w2t,,wkt) T , 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×k matrix C^(l), whose (i,j)th element is given by
C^ij(l)=1nt=l+1n(wi(t-l)-w¯i)(wjt-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×k matrix R^(l), whose (i,j)th 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 (R(l)) 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 Arguments

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 Integer Input
On entry: k, the dimension of the multivariate time series.
Constraint: k1.
3: n Integer Input
On entry: n, the number of observations in the series.
Constraint: n2.
4: m Integer Input
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) array Input
On entry: w(i,t) must contain the observation wit, for i=1,2,,k and t=1,2,,n.
6: kmax Integer Input
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) array Output
On exit: the means, w¯i, for i=1,2,,k.
8: r0(kmax,k) Real (Kind=nag_wp) array Output
On exit: if ij, then r0(i,j) contains an estimate of the (i,j)th element of the cross-correlation (or cross-covariance) matrix at lag zero, R^ij(0); if i=j, then if matrix='V', r0(i,i) contains the variance of the ith series, C^ii(0), and if matrix='R', r0(i,i) contains the standard deviation of the ith series, C^ii(0).
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) array Output
On exit: r(i,j,l) contains an estimate of the (i,j)th element of the cross-correlation (or cross-covariance) at lag l, R^ij(l), 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 Integer Input/Output
On entry: ifail must be set to 0, −1 or 1 to set behaviour on detection of an error; these values have no effect when no error is detected.
A value of 0 causes the printing of an error message and program execution will be halted; otherwise program execution continues. A value of −1 means that an error message is printed while a value of 1 means that it is not.
If halting is not appropriate, the value −1 or 1 is recommended. If message printing is undesirable, then the value 1 is recommended. Otherwise, the value 0 is recommended. 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, k=value.
Constraint: k1.
On entry, kmax=value and k=value.
Constraint: kmaxk.
On entry, m=value and n=value.
Constraint: m1 and m<n.
On entry, matrix=value.
Constraint: matrix='V' or 'R'.
On entry, n=value.
Constraint: n2.
ifail=2
On entry, at least one of the series is such that all its elements are practically identical 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.
ifail=-99
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.
ifail=-399
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.
ifail=-999
Dynamic memory allocation failed.
See Section 9 in the Introduction to the NAG Library FL Interface for further information.

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 Parallelism and Performance

Background information to multithreading can be found in the Multithreading documentation.
g13dmf makes calls to BLAS and/or LAPACK routines, which may be threaded within the vendor library used by this implementation. Consult the documentation for the vendor library for further information.
Please consult the X06 Chapter Introduction for information on how to control and interrogate the OpenMP environment used within this routine. Please also consult the Users' Note for your implementation for any additional implementation-specific information.

9 Further Comments

The time taken is roughly proportional to mnk2.

10 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.

10.1 Program Text

Program Text (g13dmfe.f90)

10.2 Program Data

Program Data (g13dmfe.d)

10.3 Program Results

Program Results (g13dmfe.r)