Skip to main content

Discrete Fourier Transform

Discrete Fourier Transform

In this experiment, we calculated the discrete fourier transform of a N point sequence in time domain to obtain an N point sequence in Frequency domain. Hence, using DFT, discrete time data sets are converted into discrete frequency spectrum. DFT gives an approximate spectrum and is computationally slow. 

In the first case, the input signal was x[n] was an N point sequence. The output of DFT gave X[k] which was also an N point sequence.  










                      In the second case, the sequence was padded with zeros at the end. 










                    In the third case, the input signal was expanded by adding zeros in   between the signal values as shown.











All these cases showed that, as the length of signal increases by zero padding: Frequency spacing decreases, approximation error decreases and resolution of the spectrum increases. Hence, Expansion of a signal in time domain gives a compression of signal in frequency domain.
 

Comments

  1. As the length of the signal is increased by zero padding the quality of magnitude spectrum is improved.

    ReplyDelete
  2. By appending more zeroes, the missing values in less point DFT are present in the DFT with more point.

    ReplyDelete
  3. Increase in resolution results in more accuracy

    ReplyDelete
  4. DFT is discrete version of DTFT

    ReplyDelete

Post a Comment

Popular posts from this blog

Chebyshev Filter Design

Chebyshev Filter Design Having designed a filter by Butterworth design method previously, designing filter by Chebyshev Method requires calculation of a lot more parameters than butterworth method. We designed Chebyshev 1 filter and simulated its magnitude and frequency response using Scilab .  The order of the filter and the Transfer Function were calculated after entering the values of various parameters like : Pass band Attenuation (Ap), Stop Band Attenuation (As), Passband frequency, Stopband frequency. The obtained frequency response was very close to the ideal response. From the obtained characteristics, we verified that, for a Chebyshev 1 filter Pass band : Equiripple Stop band: monotonic No ripples in Passband Lesser transition width, slow roll-off at high frequencies Scilab simulation software made the process of computing Transfer Function of higher order filters and plotting the magnitude and frequency response easier and efficient.    ...