For a bivariate time series, g13ce calculates the cross amplitude spectrum and squared coherency, together with lower and upper bounds from the univariate and bivariate (cross) spectra.
Syntax
C# |
---|
public static void g13ce( double[] xg, double[] yg, double[] xyrg, double[] xyig, int ng, double[] stats, double[] ca, double[] calw, double[] caup, out double t, double[] sc, double[] sclw, double[] scup, out int ifail ) |
Visual Basic |
---|
Public Shared Sub g13ce ( _ xg As Double(), _ yg As Double(), _ xyrg As Double(), _ xyig As Double(), _ ng As Integer, _ stats As Double(), _ ca As Double(), _ calw As Double(), _ caup As Double(), _ <OutAttribute> ByRef t As Double, _ sc As Double(), _ sclw As Double(), _ scup As Double(), _ <OutAttribute> ByRef ifail As Integer _ ) |
Visual C++ |
---|
public: static void g13ce( array<double>^ xg, array<double>^ yg, array<double>^ xyrg, array<double>^ xyig, int ng, array<double>^ stats, array<double>^ ca, array<double>^ calw, array<double>^ caup, [OutAttribute] double% t, array<double>^ sc, array<double>^ sclw, array<double>^ scup, [OutAttribute] int% ifail ) |
F# |
---|
static member g13ce : xg : float[] * yg : float[] * xyrg : float[] * xyig : float[] * ng : int * stats : float[] * ca : float[] * calw : float[] * caup : float[] * t : float byref * sc : float[] * sclw : float[] * scup : float[] * ifail : int byref -> unit |
Parameters
- xg
- Type: array<System..::..Double>[]()[][]An array of size [ng]On entry: the ng univariate spectral estimates, , for the series.
- yg
- Type: array<System..::..Double>[]()[][]An array of size [ng]On entry: the ng univariate spectral estimates, , for the series.
- xyrg
- Type: array<System..::..Double>[]()[][]An array of size [ng]On entry: the real parts, , of the ng bivariate spectral estimates for the and series. The series leads the series.
- xyig
- Type: array<System..::..Double>[]()[][]An array of size [ng]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.
- ng
- Type: System..::..Int32On entry: 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: .
- stats
- Type: array<System..::..Double>[]()[][]An array of size []On entry: 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:
- ;
- ;
- .
- ca
- Type: array<System..::..Double>[]()[][]An array of size [ng]On exit: the ng cross amplitude spectral estimates at each frequency of .
- calw
- Type: array<System..::..Double>[]()[][]An array of size [ng]
- caup
- Type: array<System..::..Double>[]()[][]An array of size [ng]
- t
- Type: System..::..Double%On exit: the critical value for the significance of the squared coherency, .
- sc
- Type: array<System..::..Double>[]()[][]An array of size [ng]On exit: the ng squared coherency estimates, at each frequency .
- sclw
- Type: array<System..::..Double>[]()[][]An array of size [ng]
- scup
- Type: array<System..::..Double>[]()[][]An array of size [ng]
- ifail
- Type: System..::..Int32%On exit: unless the method detects an error or a warning has been flagged (see [Error Indicators and Warnings]).
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 g13ca or 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 method.
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
Error Indicators and Warnings
Errors or warnings detected by the method:
On entry, , or , or , or , or .
- A bivariate spectral estimate is zero. For this frequency the cross amplitude spectrum and squared coherency and their bounds are set to zero.
- A univariate spectral estimate is negative. For this frequency the cross amplitude spectrum and squared coherency and their bounds are set to zero.
- A univariate spectral estimate is zero. For this frequency the cross amplitude spectrum and squared coherency and their bounds are set to zero.
- 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 .
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.
Parallelism and Performance
None.
Further Comments
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 g13ce to calculate the cross amplitude spectrum and squared coherency and their bounds and prints the results.
Example program (C#): g13cee.cs