.. _DFT: Discrete 1D Fourier Transform ------------------------------ .. index:: DFT, Discrete Fourier Transform, fftshift The continuous time signal :math:`x(t)` is sampled every :math:`T` seconds to obtain the discrete time signal :math:`x(n)`. Discrete Fourier transforms (DFT) are computed over a sample window of :math:`N` samples, which can span be the entire signal or a portion of it. .. describe:: Discrete 1D Fourier Transform .. math:: X(k) = \sum_{n=0}^{N-1} x(n) \, e^{\textstyle -j\,2\,\pi\,k\,n\,/N} .. describe:: Inverse Discrete Fourier Transform .. math:: x(n) = \frac{1}{N} \sum_{k=0}^{N-1} X(k) \, e^{\textstyle j\,2\,\pi\,k\,n\,/N} .. note:: * In MATLAB, k and n range from 1 to N, not 0 to N-1. * There is some variation in the literature about the multiplier in front of the sum. Some people put :math:`\frac{1}{N}` in the DFT equation. Others put it in the IDFT equation. This is what MATLAB does. Other still put :math:`\frac{1}{\sqrt{N}}` in both. .. describe:: Properties * :math:`X[k]` is complex, discrete, and periodic. * The range of k from 0 to N-1 may be regarded as spanning the complex exponential basis function from 0 to :math:`2\,\pi`. In relation to frequencies, we prefer to view the values from :math:`\pi` to :math:`2\,\pi` as from :math:`-\pi` to 0. * k = 0 to N/2 are positive frequencies. * k = N/2 to N-1 are negative frequencies. * MATLAB has a function called ``fftshift`` that is often used when plotting in the frequency domain. It is necessary to shift the x-axis to display the plot so that 0 is at the center, instead of :math:`\pi` or N/2 being the center of the plot. * For best result when using numerical software, such as MATLAB, choose N to be a power of 2 (2, 4, 8, 16, 32, 64, 128, 256, 512 ...). The reason for this is explained when the ``fft`` function is discussed. For both images and one dimensional signals that are not a power of 2, zeros may be added to the end of the data to reach the next power of 2. :: >> z = linspace(0, 2*pi, 128); >> x = cos(5*z); % 5 = 2*pi*f => f approx 0.8 Hz >> X = fft(x); >> figure; >> subplot(2,2,1), plot(z,x), title('time domain'); >> subplot(2,2,2), plot(z-pi,fftshift(abs(X))), title('frequency domain'); >> subplot(2,2,3), plot(z-pi,fftshift(real(X))), title('Real frequency domain'); >> subplot(2,2,4), plot(z-pi,fftshift(imag(X))), title('Imaginary frequency domain'); .. figure:: DFT_plots.png :align: center Discrete Fourier transform of a sinusoidal signal Periodicity in the Frequency Domain ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Sampling a continuous signal is equivalent to multiplying the signal with the comb function with period of :math:`T`. Normally, when we think of filtering, we do convolution in the time domain, which corresponds to multiplication in the frequency domain. In this case, multiplication was done in the time domain, so convolution is done in the frequency domain. Referring to :ref:`FT_pairs`, we see that the comb function is periodic at every :math:`1/T` Hz (cycles/second). Thus, discrete signals are periodic in the frequency domain every :math:`N` coefficients. Each sample point of the comb function is like an impulse signal, which has a flat frequency response. So in the frequency domain, the shape of the frequency response for the continuous and discrete signal are the same over :math:`1/T` Hz or :math:`N` samples. The :abbr:`DFT (Discrete Fourier Transform)` result is just repeated every :math:`N` samples. The periodic property can also be seen be in the equation for the :abbr:`DFT (Discrete Fourier Transform)`. .. math:: \begin{array}{ll} X(k + m\,N) & = \frac{1}{N} \sum_{n=0}^{N-1} x(n) \, e^{-j\,2\,\pi\,(k + m\,N)\,n\,/N} \\ \\ & = \frac{1}{N} \sum_{n=0}^{N-1} x(n) \, e^{-j\,2\,\pi\,k\,n\,/N} \, e^{-j\,2\,\pi\,m\,N\,n\,/N} \\ \\ & = \frac{1}{N} \sum_{n=0}^{N-1} x(n) \, e^{-j\,2\,\pi\,k\,n\,/N} \, \underbrace{e^{-j\,2\,\pi\,m\,n}}_{1} \\ \\ & = X(k) \end{array} .. figure:: periodic_DFT.png :align: center Discrete signals in frequency domain are periodic Aliasing and Nyquist Theorem ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ .. index:: aliasing, Nyquist Theorem Since discrete signals and images are periodic in the frequency domain, if the frequency response extends beyond :math:`\pm N/2` from zero, then they will overlap with adjacent frequency response producing distortion know as :term:`aliasing`. Aliasing can occur either because of image or signal processing, such as down sampling (resizing) an image, or because of not sufficiently low pass filtering the signal before sampling. The Nyquist sampling theorem states that signals must be sampled at least twice the highest frequency component of the signal. .. figure:: under_sampled.png :align: center The red line tries to sample the blue line, but shows aliasing because it is undersampled, violating the Nyquist theorem. .. figure:: aliased_DFT.png :align: center Aliasing in the frequency domain This video by Peter Corke `demonstrates aliasing and how it occurs in the spatial domain `_.