For a bivariate time series, g13cgc 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 function may be called by the names: g13cgc, nag_tsa_multi_noise_bivar or nag_tsa_noise_spectrum_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 G13GEF 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 Re 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 function 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: – const doubleInput
On entry: the ng univariate spectral estimates, , for the series.
2: – const doubleInput
On entry: the ng univariate spectral estimates, , for the series.
3: – const ComplexInput
On entry: , of the ng bivariate spectral estimates for the and series. The series leads the series.
Note: the two univariate and 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: – IntegerInput
On entry: the number of spectral estimates in each of the arrays xg, yg and xyg. It is also the number of noise spectral estimates.
Constraint:
.
5: – const doubleInput
On entry: the 4 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:
;
;
.
6: – IntegerInput
On entry: the frequency division, , of the spectral estimates as , as input to g13cbc and g13cdc.
Constraints:
;
The largest prime factor of l must not exceed , and the total number of prime factors of l, counting repetitions, must not exceed . These two restrictions are imposed by the internal FFT algorithm used.
7: – 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 g13cccorg13cdc which calculated the smoothed sample cross spectrum. n is used in calculating the impulse response function standard error (rfse).
Constraint:
.
8: – doubleOutput
On exit: the ng estimates of the noise spectrum, at each frequency.
9: – double *Output
On exit: the noise spectrum lower limit multiplying factor.
10: – double *Output
On exit: the noise spectrum upper limit multiplying factor.
11: – doubleOutput
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 .
12: – double *Output
On exit: the impulse response function standard error.
13: – NagError *Input/Output
The NAG error argument (see Section 7 in the Introduction to the NAG Library CL Interface).
6Error Indicators and Warnings
NE_2_INT_ARG_CONS
On entry, while . These arguments must satisfy when .
NE_ALLOC_FAIL
Dynamic memory allocation failed.
NE_BIVAR_SPECTRAL_ESTIM_ZERO
A bivariate 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.
NE_FACTOR_GT
At least one of the prime factors of l is greater than .
NE_INT_ARG_LT
On entry, .
Constraint: .
On entry, .
Constraint: .
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, must not be greater than 1.0: .
NE_REAL_ARG_LE
On entry, must not be less than or equal to 0.0: .
NE_REAL_ARG_LT
On entry, must not be less than 3.0: .
On entry, must not be less than 1.0: .
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 noise spectrum is zero and the contribution to the impulse response function at this frequency 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.
NE_UNIVAR_SPECTRAL_ESTIM_ZERO
A bivariate 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.
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
g13cgc is not threaded in any implementation.
9Further Comments
The time taken by g13cgc is approximately proportional to ng.
10Example
The example program reads the set of univariate spectrum statistics, the 2 univariate spectra and the cross spectrum at a frequency division of for a pair of time series. It calls g13cgc to calculate the noise spectrum and its confidence limits multiplying factors, the impulse response function and its standard error. It then prints the results.