Mathematics of the Discrete Fourier Transform (DFT)



<< Previous page  TOC  INDEX  Next page >>

Decimation Theorem (Aliasing Theorem)



Theorem: For all $x\,

\

Proof: Let $k^\ denote the frequency index in the aliased spectrum, and let $Y(k^\. Then $Y$ is length $M=N/L$, where $L$ is the decimation factor. We have

\



Since $M/N=L$, the sum over $l$ becomes

\

using the closed form expression for a geometric series derived earlier. We see that the sum over $L$ effectively samples $x$ every $L$samples. This can be expressed in the previous formula by defining $m\ which ranges only over the nonzero samples:

\



Since the above derivation also works in reverse, the theorem is proved.

Here is an illustration of the Decimation Theorem in Matlab:

>> N=4;
>> x = 1:N;
>> X = fft(x);
>> x2 = x(1:2:N);
>> fft(x2)                         % FFT(Decimate(x,2))

ans =

     4    -2

>> (X(1:N/2) + X(N/2 + 1:N))/2     % (1/2) Alias(X,2)

ans =

    4.0000   -2.0000

An illustration of aliasing in the frequency domain is shown in Fig. 8.10.

<< Previous page  TOC  INDEX  Next page >>

Back to Hardware Guides
"Music 320 Background Reader" by Julius O. Smith III, (Course Background Reader, Music 320). Copyright © 2001-01-02 by Julius O. Smith III. - Center for Computer Research in Music and Acoustics (CCRMA), Department of Electrical Engineering, Stanford University. This is a modified HTML version reproduced by permission.
| TXT | TXT+
Unless otherwise indicated, the contents of this site are copyright © Nicola Asuni - Tecnick.com s.r.l.
Tecnick.com s.r.l. - Sede Legale: Via Della Pace, 11 – 09044 – Quartucciu (CA) – ITALY - Capitale Sociale € 10.000,00 i.v. - P. IVA e C.F.: 02574420929 - C.C.I.A.A.: CA-2000-19195 - R.E.A.: 208980

Powered by Tecnick.com AIOCP (All In One Control Panel) GetJava Download Button
 
Technick.net - Tons of Hardware Information





Bookmark and Share