For a bivariate time series, g13cg 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.
Syntax
C# |
---|
public static void g13cg( double[] xg, double[] yg, double[] xyrg, double[] xyig, int ng, double[] stats, int l, int n, double[] er, out double erlw, out double erup, double[] rf, out double rfse, out int ifail ) |
Visual Basic |
---|
Public Shared Sub g13cg ( _ xg As Double(), _ yg As Double(), _ xyrg As Double(), _ xyig As Double(), _ ng As Integer, _ stats As Double(), _ l As Integer, _ n As Integer, _ er As Double(), _ <OutAttribute> ByRef erlw As Double, _ <OutAttribute> ByRef erup As Double, _ rf As Double(), _ <OutAttribute> ByRef rfse As Double, _ <OutAttribute> ByRef ifail As Integer _ ) |
Visual C++ |
---|
public: static void g13cg( array<double>^ xg, array<double>^ yg, array<double>^ xyrg, array<double>^ xyig, int ng, array<double>^ stats, int l, int n, array<double>^ er, [OutAttribute] double% erlw, [OutAttribute] double% erup, array<double>^ rf, [OutAttribute] double% rfse, [OutAttribute] int% ifail ) |
F# |
---|
static member g13cg : xg : float[] * yg : float[] * xyrg : float[] * xyig : float[] * ng : int * stats : float[] * l : int * n : int * er : float[] * erlw : float byref * erup : float byref * rf : float[] * rfse : float byref * 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, xyig. It is also the number of noise spectral 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 degree of freedom, and contain the lower and upper bound multiplying factors respectively and contains the bandwidth.Constraints:
- ;
- ;
- .
- l
- Type: System..::..Int32
- n
- Type: System..::..Int32On entry: the number of points in each of the time series and . n should have the same value as nxy in the call of g13cc or g13cd which calculated the smoothed sample cross spectrum. n is used in calculating the impulse response function standard error (rfse).Constraint: .
- er
- Type: array<System..::..Double>[]()[][]An array of size [ng]On exit: the ng estimates of the noise spectrum, at each frequency.
- erlw
- Type: System..::..Double%On exit: the noise spectrum lower limit multiplying factor.
- erup
- Type: System..::..Double%On exit: the noise spectrum upper limit multiplying factor.
- rf
- Type: array<System..::..Double>[]()[][]An array of size [l]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 .
- rfse
- Type: System..::..Double%On exit: the impulse response function standard error.
- ifail
- Type: System..::..Int32%On exit: unless the method detects an error or a warning has been flagged (see [Error Indicators and Warnings]).
Description
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 g13ce and is the univariate spectrum estimate for series . Confidence limits on the true spectrum are obtained using multipliers as described for g13ca, 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 method 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 parameter array rf indicate that feedback exists from to . This will bias the estimates of in any causal dependence of on .
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
Note: g13cg may return useful information for one or more of the following detected errors or warnings.
Errors or warnings detected by the method:
On entry, , or , or , or , or , or .
- 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.
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.
Accuracy
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.
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 g13cg to calculate the noise spectrum and its confidence limits multiplying factors, the impulse response function and its standard error. It then prints the results.
Example program (C#): g13cge.cs