Log-scale cross-spectral density estimates


Description

The LTPDA method ao/lcpsd estimates the cross-power spectral density of time-series signals, included in the input aos following the LPSD algorithm [1]. Spectral density estimates are not evaluated at frequencies which are linear multiples of the minimum frequency resolution 1/T, where T is the window lenght, but on a logarithmic scale. The algorithm takes care of calculating the frequencies at which to evaluate the spectral estimate, aiming at minimizing the uncertainty in the estimate itself, and to recalculate a suitable window length for each frequency bin.

Data are windowed prior to the estimation of the spectrum, by multiplying it with aspectral window object, and can be detrended by polinomial of time in order to reduce the impact of the border discontinuities. Detrending is performed on each individual window. The user can choose the quantity being given in output among ASD (amplitude spectral density), PSD (power spectral density), AS (amplitude spectrum), and PS (power spectrum).


Syntax

    
b = lcpsd(a1,a2,pl)

a1 and a2 are the 2 aos containing the input time series to be evaluated, b is the output object and pl is an optional parameter list.

Parameters

The parameter list pl includes the following parameters:

The length of the window is set by the value of the parameter 'Nfft', so that the window is actually rebuilt using only the key features of the window, i.e. the name and, for Kaiser windows, the PSLL.

If the user doesn't specify the value of a given parameter, the default value is used.

The function makes log-scale CPSD estimates between the 2 input aos. The input argument list must contain 2 analysis objects, and the output will contain the LCPSD estimate. If passing two identical objects ai, the output will be equivalent to the output of lpsd(ai).

Algorithm

The algorithm is implemented according to [1]. In order to compute the standard deviation of the mean for each frequency bin, the averaging of the different segments is performed using Welford's algorithm [2] which allows to compute mean and variance in one loop.
In the LPSD algorithm, the first frequencies bins are usually computed using a single segment containing all the data. For these bins, the sample variance is set to Inf.

Example

Evaluation of the log-scale CPSD of two time-series represented by: a low frequency sinewave signal superimposed to white noise, and a low frequency sinewave signal at the same frequency, phase shifted and with different amplitude, superimposed to white noise.

    
% Parameters nsecs = 1000; fs = 10; % Create input AOs x = ao(plist('waveform','sine wave','f',0.1,'A',1,'nsecs',nsecs,'fs',fs)) + ... ao(plist('waveform','noise','type','normal','nsecs',nsecs,'fs',fs)); x.setYunits('m'); y = ao(plist('waveform','sine wave','f',0.1,'A',2,'nsecs',nsecs,'fs',fs,'phi',90)) + ... 4*ao(plist('waveform','noise','type','normal','nsecs',nsecs,'fs',fs)); y.setYunits('V'); % Compute log cpsd z = lcpsd(x,y,plist('nfft',1000)); % Plot iplot(z);

References

  1. M. Troebs, G. Heinzel, Improved spectrum estimation from digitized time series on a logarithmic frequency axis, Measurement, Vol. 39 (2006), pp. 120 - 129. See also the Corrigendum.
  2. B. P. Weldford, Note on a Method for Calculating Corrected Sums of Squares and Products, Technometrics, Vol. 4, No. 3 (1962), pp 419 - 420.



©LTP Team