NAG CL Interface
g13cec (multi_​spectrum_​bivar)

Settings help

CL Name Style:


1 Purpose

For a bivariate time series, g13cec calculates the cross amplitude spectrum and squared coherency, together with lower and upper bounds from the univariate and bivariate (cross) spectra.

2 Specification

#include <nag.h>
void  g13cec (const double xg[], const double yg[], const Complex xyg[], Integer ng, const double stats[], double ca[], double calw[], double caup[], double *t, double sc[], double sclw[], double scup[], NagError *fail)
The function may be called by the names: g13cec, nag_tsa_multi_spectrum_bivar or nag_tsa_cross_spectrum_bivar.

3 Description

Estimates of the cross amplitude spectrum A (ω) and squared coherency W (ω) are calculated for each frequency ω as
A (ω) = | f xy (ω)| = cf (ω) 2 + qf (ω) 2 ​ and ​ W (ω) = | f xy (ω)| 2 f xx (ω) f yy (ω)  
where:
cf (ω) and qf (ω) are the co-spectrum and quadrature spectrum estimates between the series, i.e., the real and imaginary parts of the cross spectrum f xy (ω) as obtained using g13ccc or g13cdc. f xx (ω) and f yy (ω) are the univariate spectrum estimates for the two series as obtained using g13cac or g13cbc. The same type and amount of smoothing should be used for these estimates, and this is specified by the degrees of freedom and bandwidth values which are passed from the calls of g13cac or g13cbc.
Upper and lower 95% confidence limits for the cross amplitude are given approximately by
A (ω) [1±(1.96/ d ) W (ω) −1 + 1 ] ,  
except that a negative lower limit is reset to 0.0, in which case the approximation is rather poor. You are, therefore, particularly recommended to compare the coherency estimate W (ω) with the critical value T derived from the upper 5% point of the F -distribution on (2,d-2) degrees of freedom:
T = 2F d - 2 + 2 F  
where d is the degrees of freedom associated with the univariate spectrum estimates. The value of T is returned by the function.
The hypothesis that the series are unrelated at frequency ω , i.e., that both the true cross amplitude and coherency are zero, may be rejected at the 5% level if W (ω) > T . Tests at two frequencies separated by more than the bandwidth may be taken to be independent.
The confidence limits on A (ω) are strictly appropriate only at frequencies for which the coherency is significant. The same applies to the confidence limits on W (ω) which are however calculated at all frequencies using the approximation that arctanh( W (l) ) is Normal with variance 1/d .

4 References

Bloomfield P (1976) Fourier Analysis of Time Series: An Introduction Wiley
Jenkins G M and Watts D G (1968) Spectral Analysis and its Applications Holden–Day

5 Arguments

1: xg[ng] const double Input
On entry: the ng univariate spectral estimates, f xx (ω) , for the x series.
2: yg[ng] const double Input
On entry: the ng univariate spectral estimates, f yy (ω) , for the y series.
3: xyg[ng] const Complex Input
On entry: f xy (ω) , the ng bivariate spectral estimates for the x and y series. The x series leads the y series.
Note: the two univariate and the bivariate spectra must each have been calculated using the same amount of smoothing. The frequency width and the shape of the window and the frequency division of the spectral estimates must be the same. The spectral estimates and statistics must also be unlogged.
4: ng Integer Input
On entry: the number of spectral estimates in each of the arrays xg, yg and xyg. It is also the number of cross amplitude spectral and squared coherency estimates.
Constraint: ng1 .
5: stats[4] const double Input
On entry: the 4 associated statistics for the univariate spectral estimates for the x and y series. stats[0] contains the degrees of freedom, stats[1] and stats[2] contain the lower and upper bound multiplying factors respectively and stats[3] contains the bandwidth.
Constraints:
  • stats[0] 3.0 ;
  • 0.0 < stats[1] 1.0 ;
  • stats[2] 1.0 .
6: ca[ng] double Output
On exit: the ng cross amplitude spectral estimates A ^ (ω) at each frequency of ω .
7: calw[ng] double Output
On exit: the ng lower bounds for the ng cross amplitude spectral estimates.
8: caup[ng] double Output
On exit: the ng upper bounds for the ng cross amplitude spectral estimates.
9: t double * Output
On exit: the critical value for the significance of the squared coherency, T .
10: sc[ng] double Output
On exit: the ng squared coherency estimates, W ^ (ω) at each frequency ω .
11: sclw[ng] double Output
On exit: the ng lower bounds for the ng squared coherency estimates.
12: scup[ng] double Output
On exit: the ng upper bounds for the ng squared coherency estimates.
13: fail NagError * Input/Output
The NAG error argument (see Section 7 in the Introduction to the NAG Library CL Interface).

6 Error Indicators and Warnings

NE_ALLOC_FAIL
Dynamic memory allocation failed.
NE_BIVAR_SPECTRAL_ESTIM_ZERO
A bivariate spectral estimate is zero.
For this frequency the cross amplitude spectrum is set to zero, and the contributions to the impulse response function and its standard error are set to zero.
NE_INT_ARG_LT
On entry, ng=value.
Constraint: ng1.
NE_INTERNAL_ERROR
An internal error has occurred in this function. Check the function call and any array sizes. If the call is correct then please contact NAG for assistance.
NE_REAL_ARG_GT
On entry, stats[1] must not be greater than 1.0: stats[1] = value.
NE_REAL_ARG_LE
On entry, stats[1] must not be less than or equal to 0.0: stats[1] = value.
NE_REAL_ARG_LT
On entry, stats[0] must not be less than 3.0: stats[0] = value.
On entry, stats[2] must not be less than 1.0: stats[2] = value.
NE_SQUARED_FREQ_GT_ONE
A calculated value of the squared coherency exceeds one.
For this frequency the squared coherency is reset to one with the result that the cross amplitude spectrum is zero and the contribution to the impulse response function at this frequency is zero.
NE_UNIVAR_SPECTRAL_ESTIM_NEG
A bivariate spectral estimate is negative.
For this frequency the cross amplitude spectrum is set to zero, and the contributions to the impulse response function and its standard error are set to zero.
NE_UNIVAR_SPECTRAL_ESTIM_ZERO
A bivariate spectral estimate is zero.
For this frequency the cross amplitude spectrum is set to zero, and the contributions to the impulse response function and its standard error are set to zero.

7 Accuracy

All computations are very stable and yield good accuracy.

8 Parallelism and Performance

g13cec is not threaded in any implementation.

9 Further Comments

The time taken by g13cec is approximately proportional to ng.

10 Example

The example program reads the set of univariate spectrum statistics, the 2 univariate spectra and the cross spectrum at a frequency division of 2π 20 for a pair of time series. It calls g13cec to calculate the cross amplitude spectrum and squared coherency and their bounds and prints the results.

10.1 Program Text

Program Text (g13cece.c)

10.2 Program Data

Program Data (g13cece.d)

10.3 Program Results

Program Results (g13cece.r)