g13cd calculates the smoothed sample cross spectrum of a bivariate time series using spectral smoothing by the trapezium frequency (Daniell) window.
Syntax
C# |
---|
public static void g13cd( int nxy, int mtxy, double pxy, int mw, int ish, double pw, int l, int kc, double[] xg, double[] yg, out int ng, out int ifail ) |
Visual Basic |
---|
Public Shared Sub g13cd ( _ nxy As Integer, _ mtxy As Integer, _ pxy As Double, _ mw As Integer, _ ish As Integer, _ pw As Double, _ l As Integer, _ kc As Integer, _ xg As Double(), _ yg As Double(), _ <OutAttribute> ByRef ng As Integer, _ <OutAttribute> ByRef ifail As Integer _ ) |
Visual C++ |
---|
public: static void g13cd( int nxy, int mtxy, double pxy, int mw, int ish, double pw, int l, int kc, array<double>^ xg, array<double>^ yg, [OutAttribute] int% ng, [OutAttribute] int% ifail ) |
F# |
---|
static member g13cd : nxy : int * mtxy : int * pxy : float * mw : int * ish : int * pw : float * l : int * kc : int * xg : float[] * yg : float[] * ng : int byref * ifail : int byref -> unit |
Parameters
- nxy
- Type: System..::..Int32On entry: , the length of the time series and .Constraint: .
- mtxy
- Type: System..::..Int32On entry: whether the data is to be initially mean or trend corrected.
- For no correction.
- For mean correction.
- For trend correction.
Constraint: .
- pxy
- Type: System..::..DoubleOn entry: the proportion of the data (totalled over both ends) to be initially tapered by the split cosine bell taper.A value of implies no tapering.Constraint: .
- mw
- Type: System..::..Int32On entry: , the frequency width of the smoothing window as .A value of implies that no smoothing is to be carried out.Constraint: .
- ish
- Type: System..::..Int32On entry: , the alignment shift between the and series. If leads , the shift is positive.Constraint: .
- pw
- Type: System..::..DoubleOn entry: , the shape parameter of the trapezium frequency window.A value of gives a triangular window, and a value of a rectangular window.If (i.e., no smoothing is carried out) then pw is not used.Constraint: if , .
- l
- Type: System..::..Int32On entry: , the frequency division of smoothed cross spectral estimates as .
- kc
- Type: System..::..Int32On entry: the order of the fast Fourier transform (FFT) used to calculate the spectral estimates. kc should be a product of small primes such as where is the smallest integer such that , provided .
- xg
- Type: array<System..::..Double>[]()[][]An array of size [kc]On entry: the nxy data points of the series.On exit: the real parts of the ng cross spectral estimates in elements to , and to contain . The series leads the series.
- yg
- Type: array<System..::..Double>[]()[][]An array of size [kc]On entry: the nxy data points of the series.On exit: the imaginary parts of the ng cross spectral estimates in elements to , and to contain . The series leads the series.
- ng
- Type: System..::..Int32%
- ifail
- Type: System..::..Int32%On exit: unless the method detects an error or a warning has been flagged (see [Error Indicators and Warnings]).
Description
The supplied time series may be mean and trend corrected and tapered as in the description of g13cb before calculation of the unsmoothed sample cross-spectrum
for frequency values , .
A correction is made for bias due to any tapering.
As in the description of g13cb for univariate frequency window smoothing, the smoothed spectrum is returned as a subset of these frequencies,
where [ ] denotes the integer part.
Its real part or co-spectrum , and imaginary part or quadrature spectrum are defined by
where the weights are similar to the weights defined for g13cb, but allow for an implicit alignment shift between the series:
It is recommended that is chosen as the lag at which the cross-covariances peak, so as to minimize bias.
If no smoothing is required, the integer , which determines the frequency window width , should be set to .
The bandwidth of the estimates will normally have been calculated in a previous call of g13cb for estimating the univariate spectra of and .
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 , or , or , or and , or and , or , or .
On entry, , or kc is not a multiple of l, or kc has a prime factor exceeding , or kc has more than prime factors, counting repetitions.
- This indicates that a serious error has occurred. Check all array subscripts in calls to g13cd. Seek expert help.
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 two time series of length . It selects mean correction and a 10% tapering proportion. It selects a frequency width of smoothing window, a window shape parameter of and an alignment shift of . It then calls g13cd to calculate the smoothed sample cross spectrum and prints the results.
Example program (C#): g13cde.cs