PDF version (NAG web site
, 64-bit version, 64-bit version)
NAG Toolbox: nag_tsa_multi_spectrum_bivar (g13ce)
Purpose
For a bivariate time series, nag_tsa_multi_spectrum_bivar (g13ce) calculates the cross amplitude spectrum and squared coherency, together with lower and upper bounds from the univariate and bivariate (cross) spectra.
Syntax
[
ca,
calw,
caup,
t,
sc,
sclw,
scup,
ifail] = g13ce(
xg,
yg,
xyrg,
xyig,
stats, 'ng',
ng)
[
ca,
calw,
caup,
t,
sc,
sclw,
scup,
ifail] = nag_tsa_multi_spectrum_bivar(
xg,
yg,
xyrg,
xyig,
stats, 'ng',
ng)
Description
Estimates of the cross amplitude spectrum
and squared coherency
are calculated for each frequency
as
where
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
nag_tsa_uni_spectrum_lag (g13ca) or
nag_tsa_uni_spectrum_daniell (g13cb).
Upper and lower
confidence limits for the cross amplitude are given approximately by
except that a negative lower limit is reset to
, in which case the approximation is rather poor. You are therefore particularly recommended to compare the coherency estimate
with the critical value
derived from the upper
point of the
-distribution on
degrees of freedom:
where
is the degrees of freedom associated with the univariate spectrum estimates. The value of
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 level if . Tests at two frequencies separated by more than the bandwidth may be taken to be independent.
The confidence limits on are strictly appropriate only at frequencies for which the coherency is significant. The same applies to the confidence limits on which are however calculated at all frequencies using the approximation that is Normal with variance .
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
Parameters
Compulsory Input Parameters
- 1:
– double array
-
The
ng univariate spectral estimates,
, for the
series.
- 2:
– double array
-
The
ng univariate spectral estimates,
, for the
series.
- 3:
– double array
-
The real parts,
, of the
ng bivariate spectral estimates for the
and
series. The
series leads the
series.
- 4:
– double array
-
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:
– double array
-
The four associated statistics for the univariate spectral estimates for the and series. contains the degrees of freedom, and contain the lower and upper bound multiplying factors respectively and contains the bandwidth.
Constraints:
- ;
- ;
- .
Optional Input Parameters
- 1:
– int64int32nag_int scalar
-
Default:
the dimension of the arrays
xg,
yg,
xyrg,
xyig. (An error is raised if these dimensions are not equal.)
The number of spectral estimates in each of the arrays
xg,
yg,
xyrg and
xyig. It is also the number of cross amplitude spectral and squared coherency estimates.
Constraint:
.
Output Parameters
- 1:
– double array
-
The
ng cross amplitude spectral estimates
at each frequency of
.
- 2:
– double array
-
The
ng lower bounds for the
ng cross amplitude spectral estimates.
- 3:
– double array
-
The
ng upper bounds for the
ng cross amplitude spectral estimates.
- 4:
– double scalar
-
The critical value for the significance of the squared coherency, .
- 5:
– double array
-
The
ng squared coherency estimates,
at each frequency
.
- 6:
– double array
-
The
ng lower bounds for the
ng squared coherency estimates.
- 7:
– double array
-
The
ng upper bounds for the
ng squared coherency estimates.
- 8:
– int64int32nag_int scalar
unless the function detects an error (see
Error Indicators and Warnings).
Error Indicators and Warnings
Errors or warnings detected by the function:
Cases prefixed with W are classified as warnings and
do not generate an error of type NAG:error_n. See nag_issue_warnings.
-
-
On entry, | , |
or | , |
or | , |
or | , |
or | . |
- W
-
A bivariate spectral estimate is zero. For this frequency the cross amplitude spectrum and squared coherency and their bounds are set to zero.
- W
-
A univariate spectral estimate is negative. For this frequency the cross amplitude spectrum and squared coherency and their bounds are set to zero.
- W
-
A univariate spectral estimate is zero. For this frequency the cross amplitude spectrum and squared coherency and their bounds are set to zero.
- W
-
A calculated value of the squared coherency exceeds . For this frequency the squared coherency is reset to and this value for the squared coherency is used in the formulae for the calculation of bounds for both the cross amplitude spectrum and squared coherency. This has the consequence that both squared coherency bounds are .
-
An unexpected error has been triggered by this routine. Please
contact
NAG.
-
Your licence key may have expired or may not have been installed correctly.
-
Dynamic memory allocation failed.
If more than one failure of the 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.
Accuracy
All computations are very stable and yield good accuracy.
Further Comments
The time taken by
nag_tsa_multi_spectrum_bivar (g13ce) is approximately proportional to
ng.
Example
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 nag_tsa_multi_spectrum_bivar (g13ce) to calculate the cross amplitude spectrum and squared coherency and their bounds and prints the results.
Open in the MATLAB editor:
g13ce_example
function g13ce_example
fprintf('g13ce example results\n\n');
xg = [ 2.03490; 0.51554; 0.07640;
0.01068; 0.00093; 0.00100;
0.00076; 0.00037; 0.00021];
yg = [21.97712; 3.29761; 0.28782;
0.02480; 0.00285; 0.00203;
0.00125; 0.00107; 0.00191];
xyrg = ...
[-6.54995; 0.34107; 0.12335;
-0.00514; -0.00033; -0.00039;
-0.00026; 0.00011; 0.00007];
xyig = ...
[ 0.00000; -1.19030; 0.04087;
0.00842; 0.00032; -0.00001;
0.00018; -0.00016; 0.00000];
ng = numel(xg);
stats = [30.00000; 0.63858; 1.78670; 0.33288];
[ca, calw, caup, t, sc, sclw, scup, ifail] = ...
g13ce( ...
xg, yg, xyrg, xyig, stats);
fprintf(' Cross amplitude spectrum\n\n');
fprintf(' Lower Upper\n');
fprintf(' Value bound bound\n');
for j=1:ng
fprintf('%5d%10.4f%10.4f%10.4f\n', j-1, ca(j), calw(j), caup(j))
end
fprintf('\nSquared coherency test statistic = %12.4f\n\n', t);
fprintf(' Squared coherency\n\n');
fprintf(' Lower Upper\n');
fprintf(' Value bound bound\n');
for j=1:ng
fprintf('%5d%10.4f%10.4f%10.4f\n', j-1, sc(j), sclw(j), scup(j))
end
g13ce example results
Cross amplitude spectrum
Lower Upper
Value bound bound
0 6.5499 3.9277 10.9228
1 1.2382 0.7364 2.0820
2 0.1299 0.0755 0.2236
3 0.0099 0.0049 0.0197
4 0.0005 0.0001 0.0017
5 0.0004 0.0001 0.0015
6 0.0003 0.0001 0.0010
7 0.0002 0.0001 0.0007
8 0.0001 0.0000 0.0018
Squared coherency test statistic = 0.1926
Squared coherency
Lower Upper
Value bound bound
0 0.9593 0.9185 0.9799
1 0.9018 0.8093 0.9507
2 0.7679 0.5811 0.8790
3 0.3674 0.1102 0.6177
4 0.0797 0.0000 0.3253
5 0.0750 0.0000 0.3182
6 0.1053 0.0000 0.3610
7 0.0952 0.0000 0.3475
8 0.0122 0.0000 0.1912
PDF version (NAG web site
, 64-bit version, 64-bit version)
© The Numerical Algorithms Group Ltd, Oxford, UK. 2009–2015