Spectral correlation density

From testwiki
Jump to navigation Jump to search

Template:Orphan

The spectral correlation density (SCD), sometimes also called the cyclic spectral density or spectral correlation function, is a function that describes the cross-spectral density of all pairs of frequency-shifted versions of a time-series. The spectral correlation density applies only to cyclostationary processes because stationary processes do not exhibit spectral correlation.[1] Spectral correlation has been used both in signal detection and signal classification.[2][3] The spectral correlation density is closely related to each of the bilinear time-frequency distributions, but is not considered one of Cohen's class of distributions.

Definition

The cyclic auto-correlation function of a time-series x(t) is calculated as follows:

Rxα(τ)=x(tτ2)x*(t+τ2)ei2παtdt

where (*) denotes complex conjugation. By the Wiener–Khinchin theorem [questionable, discuss], the spectral correlation density is then:

Sxα(f)=Rxα(τ)ei2πfτdτ

Estimation methods

File:Spectral Correlation Density of BPSK and QPSK.png
SCD Estimate of Common Communications Signals

The SCD is estimated in the digital domain with an arbitrary resolution in frequency and time. There are several estimation methods currently used in practice to efficiently estimate the spectral correlation for use in real-time analysis of signals due to its high computational complexity. Some of the more popular ones are the FFT Accumulation Method (FAM) and the Strip-Spectral Correlation Algorithm.[4] A fast-spectral-correlation (FSC) algorithm[5] has recently been introduced.

FFT accumulation method (FAM)

This section describes the steps for one to compute the SCD on computers. If with MATLAB or the NumPy library in Python, the steps are rather simple to implement. The FFT accumulation method (FAM) is a digital approach to calculating the SCD. Its input is a large block of IQ samples, and the output is a complex-valued image, the SCD.

Let the signal, or block of IQ samples, x be a complex valued tensor, or multidimensional array, of shape (N,), where each element is an IQ sample. The first step of the FAM is to break x into a matrix of frames of size N with overlap.

X=[x[0:N]x[L:L+N]x[2L:2L+N]x[3L:3L+N]...],

where L is the separation between window beginnings. Overlap is achieved when L<N. X is a tensor of shape (P,N), and P depends on how many frames were able to fit in x.

Next a windowing function a(N) of shape (N,), like the Hamming window, is applied to each row in X.

X=[a(N)a(N)a(N)...]X,

where is element-wise multiplication. Next the FFT is taken on each row in X

W=[FFT(X[0,:])FFT(X[1,:])FFT(X[2,:])...].

W is commonly known as the waterfall plot, or spectrogram. The next step in the FAM is for the phase to be corrected from delay of the FFTed frames.

W=[W[0,:]ejωLW[1,:]ejω2LW[2,:]ejω3LW[3,:]...],

where ω is a tensor of shape (N,) corresponding to each digital frequencies in the FFTs

ω=[π,...,π2πN].

Next the FFTs are autocorrelated to create a tensor S of shape (P,N,N).

S[i,j,k]=W[i,j]W[i,k]*,

where * denotes complex conjugate. In other terms, if we let Wi=W[i,:] be a matrix of shape (1,N), we can rewrite S as

S[i,:,:]=WiHWi,

where H denotes Hermitian (conjugate and transpose) of a matrix. The next step is to take the FFT of S along the first axis.

S[:,i,j]=FFT(S[:,i,j]).

S is the full SCD, but in the shape of a 3-dimensional tensor. What we aim for is a 2-dimensional tensor s (a matrix or image) of shape (PN,N) where each entry corresponds to a particular frequency f and cyclic frequency α. All values of α in S can be arranged in the tensor A, and all values of f in S in the tensor F. Here, f[.5,+.5) and α[1,+1) are normalized frequencies.

F[i,j,k]=j+k2N.5.

A[i,j,k]=jkN+(iP2)Δα.

where Δα=1/N. Now the SCD image s can be arranges in the form of a matrix with zeros where there are no values for a particular (f,α) pair in S, and entries from S where it is valid as per A and F.

Estimating the SCD by skipping the second FFT

The full SCD is a rather large and computationally complex, mostly due to the second round of FFTs. Fortunately, from S an estimate s of the SCD can be calculated as

s=1Pi=0P1S[i,:,:].

For even less computational complexity, we can compute s as

s=1Pi=0P1S[i,:,:],

because averaging all values in an FFT window before or after an FFT are equivalent. Note that s will look like a 45 degree rotated version of the true SCD s.

References

Template:Reflist

Further reading

  • Napolitano, Antonio (2012-12-07). Generalizations of Cyclostationary Signal Processing: Spectral Analysis and Applications. John Wiley & Sons. Template:ISBN.
  • Pace, Phillip E. (2004-01-01). Detecting and Classifying Low Probability of Intercept Radar. Artech House. Template:ISBN.