For a bivariate time series, g13cgf calculates the noise spectrum together with multiplying factors for the bounds and the impulse response function and its standard error, from the univariate and bivariate spectra.
The routine may be called by the names g13cgf or nagf_tsa_multi_noise_bivar.
3Description
An estimate of the noise spectrum in the dependence of series on series at frequency is given by
where is the squared coherency described in g13cef and is the univariate spectrum estimate for series . Confidence limits on the true spectrum are obtained using multipliers as described for g13caf, but based on degrees of freedom.
If the dependence of on can be assumed to be represented in the time domain by the one sided relationship
where the noise is independent of , then it is the spectrum of this noise which is estimated by .
Estimates of the impulse response function may also be obtained as
where indicates the real part of the expression. For this purpose it is essential that the univariate spectrum for , , and the cross spectrum, , be supplied to this routine for a frequency range
where denotes the integer part, the integral being approximated by a finite Fourier transform.
An approximate standard error is calculated for the estimates . Significant values of in the locations described as anticipatory responses in the argument array rf indicate that feedback exists from to . This will bias the estimates of in any causal dependence of on .
4References
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
5Arguments
1: – Real (Kind=nag_wp) arrayInput
On entry: the ng univariate spectral estimates, , for the series.
2: – Real (Kind=nag_wp) arrayInput
On entry: the ng univariate spectral estimates, , for the series.
3: – Real (Kind=nag_wp) arrayInput
On entry: the real parts, , of the ng bivariate spectral estimates for the and series. The series leads the series.
4: – Real (Kind=nag_wp) arrayInput
On entry: the imaginary parts, , of the ng bivariate spectral estimates for the and series. The series leads the series.
Note: the two univariate and the bivariate spectra must each have been calculated using the same method of smoothing. For rectangular, Bartlett, Tukey or Parzen smoothing windows, the same cut-off point of lag window and the same frequency division of the spectral estimates must be used. For the trapezium frequency smoothing window, 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.
5: – IntegerInput
On entry: the number of spectral estimates in each of the arrays xg, yg, xyrg, xyig. It is also the number of noise spectral estimates.
Constraint:
.
6: – Real (Kind=nag_wp) arrayInput
On entry: the four associated statistics for the univariate spectral estimates for the and series. contains the degree of freedom, and contain the lower and upper bound multiplying factors respectively and contains the bandwidth.
Constraints:
;
;
.
7: – IntegerInput
On entry: , the frequency division of the spectral estimates as . It is also the order of the FFT used to calculate the impulse response function. l must relate to the parameter ng by the relationship.
Constraint:
.
8: – IntegerInput
On entry: the number of points in each of the time series and . n should have the same value as nxy in the call of g13ccforg13cdf which calculated the smoothed sample cross spectrum. n is used in calculating the impulse response function standard error (rfse).
Constraint:
.
9: – Real (Kind=nag_wp) arrayOutput
On exit: the ng estimates of the noise spectrum, at each frequency.
10: – Real (Kind=nag_wp)Output
On exit: the noise spectrum lower limit multiplying factor.
11: – Real (Kind=nag_wp)Output
On exit: the noise spectrum upper limit multiplying factor.
12: – Real (Kind=nag_wp) arrayOutput
On exit: the impulse response function. Causal responses are stored in ascending frequency in to and anticipatory responses are stored in descending frequency in to .
13: – Real (Kind=nag_wp)Output
On exit: the impulse response function standard error.
14: – IntegerInput/Output
On entry: ifail must be set to , or to set behaviour on detection of an error; these values have no effect when no error is detected.
A value of causes the printing of an error message and program execution will be halted; otherwise program execution continues. A value of means that an error message is printed while a value of means that it is not.
If halting is not appropriate, the value or is recommended. If message printing is undesirable, then the value is recommended. Otherwise, the value is recommended since useful values can be provided in some output arguments even when on exit. When the value or is used it is essential to test the value of ifail on exit.
On exit: unless the routine detects an error or a warning has been flagged (see Section 6).
6Error Indicators and Warnings
If on entry or , explanatory error messages are output on the current error message unit (as defined by x04aaf).
Errors or warnings detected by the routine:
Note: in some cases g13cgf may return useful information.
If more than one failure of types , , and occurs then the failure type which occurred at lowest frequency is returned in ifail. However the actions indicated above are also carried out for failures at higher frequencies.
On entry, .
Constraint: .
On entry, .
Constraint: .
On entry, .
Constraint: .
On entry, .
Constraint: .
On entry, .
Constraint: .
On entry, .
Constraint: .
A bivariate spectral estimate is zero. For this frequency the noise spectrum is set to zero, and the contribution to the impulse response function and its standard error is set to zero.
A univariate spectral estimate is negative. For this frequency the noise spectrum is set to zero, and the contributions to the impulse response function and its standard error are set to zero.
A univariate spectral estimate is zero. For this frequency the noise spectrum is set to zero and the contributions to the impulse response function and its standard error are set to zero.
A calculated value of the squared coherency exceeds . For this frequency the squared coherency is reset to with the consequence that the noise spectrum is zero and the contribution to the impulse response function at this frequency is zero.
On entry, and .
Constraint: .
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.
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.
Dynamic memory allocation failed.
See Section 9 in the Introduction to the NAG Library FL Interface for further information.
7Accuracy
The computation of the noise is stable and yields good accuracy. The FFT is a numerically stable process, and any errors introduced during the computation will normally be insignificant compared with uncertainty in the data.
8Parallelism and Performance
g13cgf is threaded by NAG for parallel execution in multithreaded implementations of the NAG Library.
g13cgf 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.
9Further Comments
The time taken by g13cgf is approximately proportional to ng.
10Example
This example reads the set of univariate spectrum statistics, the two univariate spectra and the cross spectrum at a frequency division of for a pair of time series. It calls g13cgf to calculate the noise spectrum and its confidence limits multiplying factors, the impulse response function and its standard error. It then prints the results.