I would like to know how to compute the statistics of the discrete Fourier transform of a noise signal. To illustrate what I mean, I will first explain in detail a computation I have managed to do myself.
Suppose we have a discrete time series of values xn with n from 0 to N−1. Each xn is a random variable, uncorrelated with the others, and Gaussian distributed with width σ. If I define the discrete Fourier transform
Xk=1NN−1∑n=0xne−2πink/N
then I find that Xk is a complex random variable with real and imaginary parts Gaussian distributed with width σ/√2N. I did the computation by using the fact that the distribution of a sum is the convolution of the distributions, etc.
Now I want to know how to do this computation in the case that xn are correlated. How does one approach this problem? I can make the assumption that the process is Markovian.
I had originally asked this on the Computation Science site, but I think here is a better fit.
Answer
After many weeks I give the answer to my own question.
There is a limit in which we can solve this problem in a reasonably simple way. Suppose we sum enough points in our DFT that the central limit theorem guarantees that the distribution of the sum's real and imaginary parts are Gaussian distributed. Then we only need to compute the variance. If we specialize the case of the variances of the real part of the DFT we can write
⟨(ReXk)(ReXl)⟩=1N2N−1∑n=0N−1∑m=0⟨xnxm⟩cos(2πnk/N)cos(2πml/N)
⟨(ReXk)(ReXl)⟩=1N2N−1∑n=0N−1∑m=0ρ(n−m)cos(2πnk/N)cos(2πml/N)
This form in terms of the correlation function is useful because the correlation function is frequently known; By the Wiener-Khinchin theorem the correlation function is the Fourier transform of the spectral density.
This sum can be computed numerically, or even analytically for some particular forms of ρ. To compute covariance with imaginary parts of X just put sin instead of cos.
I found the idea for this in J. Schoukens and J. Renneboog, IEEE Transactions on Instrumentation and Measurement, Vol. IM-35, No. 3, September (1986).
No comments:
Post a Comment