<< Chapter < Page | Chapter >> Page > |
Sometimes it is (erroneously) written as . erroneously because it should be averaged: . The famous Wiener-Khinchine theorem says, that
where is the auto-correlation of the process. Note .
Connection to Discrete Fourier transform (DFT) In practice, a finite length signal is interpreted as periodically repeated (with period ). Its Fourier transform is then a periodic series again, called DFT, which can be computed viaan algorithm called FFT in only computations according to the formula
Recall that Matlab starts indices always with 1, thus
interpreting the first entry of the vector
as corresponding to frequency 0 (see
matlab
help fft
).
If we set we find that appears on the right side of [link] . If we assume that is large so that we can neglect the limit, we find that indicates what to expect of the squared FFT coefficients (i.e., the FFT-power-spectrum) on average:
for . Vice versa, the samples of the power spectrum for can be estimated from averaging the FFT coefficients over several noisesignals each of the form :
for (it is more natural to represent over a symmetric interval; recall that ).
Flat spectrum of zero mean white noise
The power spectrum of white noise with zero mean ( ) can be computed as follows. First we find
by independence. By [link] we find
for all . Note that the power spectrum of white noise is flat . Its constant value is equal to the variance of the zero mean noise.The constant value must clearly be equal to the power. (Also: from statistics.)
Consequently, since the mean of the DFT, i.e. is constant, the average of the DFT when computed over many realizations of the noise is nearly flat matlab demo: plot(mean(abs(fft(0.1*(rand(1000,1000)-0.5),[],2). 2)));axis([0 1000 0 0.01]) ; however,the FFT of any single realization will show large oscillations (see [link] 3rd).
Nevertheless, the power can be estimated from one realization: using [link] , using ergodicity to estimate the expected value simply as the average over all samples, and using [link] we get
This computation also confirms that the spectrum of white noise is flat and that its constant value is equal to the power.
In fact, a direct computation from [link] shows that the FFT output is a white noise as well, however with variance and so [link] (the first approximation in [link] ) holds for white noise exactly,not only approximatively.
Intuitively, the formula means that all frequencies are present in white noise with equal overall-amplitude. The spectrum being flat isa direct consequence of the independence between the noise terms. We should recall, though, that strictly speaking the spectrumis flat only as an average over many noise realizations.
Notification Switch
Would you like to follow the 'Sampling rate conversion' conversation and receive update notifications?