Preview

Advanced Transforms

Satisfactory Essays
Open Document
Open Document
814 Words
Grammar
Grammar
Plagiarism
Plagiarism
Writing
Writing
Score
Score
Advanced Transforms
Queen Mary, University of London | Lab 1: DFT,FFT and STFT | ELEM018: Advanced Transform Methods | | Arsal Javid | 12/1/2011 |

[Type the abstract of the document here. The abstract is typically a short summary of the contents of the document. Type the abstract of the document here. The abstract is typically a short summary of the contents of the document.] |

Section 2:
The following code was used to calculate perform the DFT Function in Matlab: function sw = dft(st)
% DFT - Discrete Fourier Transform M = length(st);
N = M;
WN = exp(2*pi*j/N); %Main Loop for n=0:N-1 temp = 0; for m=0:M-1 s = st(m+1); temp = temp + (s* (WN ^ (-n*m))); end sw(n+1) = temp; end The DFT function created was performed on the following signals and a graph was plotted using the function stem4.
The function used to display the results was as follows: function stem4(s)
% STEM4 - View complex signal as real, imag, abs and angle subplot(4,1,1); stem(real(s)); title('Real'); subplot(4,1,2); stem(imag(s)); title('Imag'); subplot(4,1,3); stem(abs(s)); title('Abs'); subplot(4,1,4); stem(angle(s)); title('Angle'); end The stem4 function was applied to the DFT function of the following signals.

Uniform Function:
S = ones(1,64)

From the figure above, the Real axis displays a non-zero value at the fundamental frequency; the same is also true when observing the Absolute axis which shows that only a single non-zero value is produced at the fundamental frequency. The Absolute axis displays the result of the Fourier Transform. It is also evident that the angle is changing at a steady rate across the 64 points of the DFT. Delta Function:
S = (1:64) == 1

Only the fundamental frequency, the delta function shown in the above figure provides a non-zero value. The result of the DFT function returns a value of one throughout the whole signal due to the fact that the exponential

You May Also Find These Documents Helpful

  • Satisfactory Essays

    statistics week 2 lab

    • 549 Words
    • 3 Pages

    What is seen in the stem and leaf plot is that most of the data is shown on the lower end within the 0 stem. With this information the distribution is right-skewed.…

    • 549 Words
    • 3 Pages
    Satisfactory Essays
  • Satisfactory Essays

    [Type the abstract of the document here. The abstract is typically a short summary of the contents of the document. Type the abstract of the document here. The abstract is typically a short summary of the contents of the document.]…

    • 508 Words
    • 3 Pages
    Satisfactory Essays
  • Powerful Essays

    [Type the abstract of the document here. The abstract is typically a short summary of the contents of the document. Type the abstract of the document here. The abstract is typically a short summary of the contents of the document.]…

    • 1712 Words
    • 7 Pages
    Powerful Essays
  • Powerful Essays

    Corless BTM8104 8 2

    • 949 Words
    • 9 Pages

    4) The data below are the numbers of hours of homework done as reported by 24 high school juniors for the last week in September 2006.…

    • 949 Words
    • 9 Pages
    Powerful Essays
  • Satisfactory Essays

    [Type the abstract of the document here. The abstract is typically a short summary of the contents of the document. Type the abstract of the document here. The abstract is typically a short summary of the contents of the document.]…

    • 588 Words
    • 3 Pages
    Satisfactory Essays
  • Satisfactory Essays

    [Type the abstract of the document here. The abstract is typically a short summary of the contents of the document. Type the abstract of the document here. The abstract is typically a short summary of the contents of the document.]…

    • 809 Words
    • 2 Pages
    Satisfactory Essays
  • Good Essays

    Senior Science

    • 8826 Words
    • 36 Pages

    [Type the abstract of the document here. The abstract is typically a short summary of the contents of the document. Type the abstract of the document here. The abstract is typically a short summary of the contents of the document.]…

    • 8826 Words
    • 36 Pages
    Good Essays
  • Good Essays

    [Type the abstract of the document here. The abstract is typically a short summary of the contents of the document. Type the abstract of the document here. The abstract is typically a short summary of the contents of the document.]…

    • 712 Words
    • 3 Pages
    Good Essays
  • Good Essays

    List the five most important inventions of the early nineteenth century. Rank them in order of importance. Justify your ranking.…

    • 695 Words
    • 3 Pages
    Good Essays
  • Powerful Essays

    The Oka Crisis

    • 3529 Words
    • 15 Pages

    [Type the abstract of the document here. The abstract is typically a short summary of the contents of the document. Type the abstract of the document here. The abstract is typically a short summary of the contents of the document.] |…

    • 3529 Words
    • 15 Pages
    Powerful Essays
  • Powerful Essays

    Final

    • 3293 Words
    • 14 Pages

    [Type the abstract of the document here. The abstract is typically a short summary of the contents of the document. Type the abstract of the document here. The abstract is typically a short summary of the contents of the document.]…

    • 3293 Words
    • 14 Pages
    Powerful Essays
  • Good Essays

    Psychology

    • 929 Words
    • 4 Pages

    [Type the abstract of the document here. The abstract is typically a short summary of the contents of the document. Type the abstract of the document here. The abstract is typically a short summary of the contents of the document.]…

    • 929 Words
    • 4 Pages
    Good Essays
  • Powerful Essays

    English Anthology

    • 2136 Words
    • 9 Pages

    Poets often use their work to explore the strong emotions that surround relationships and the writers of ‘Sister Maude’, ‘Praise Song for My Mother’ and ‘Nettles’ did this exceptionally well. In my opinion, I consider these poems to be the most inventive as they have used a variety of different techniques in the use of genre and form, that are unique and engaging.…

    • 2136 Words
    • 9 Pages
    Powerful Essays
  • Satisfactory Essays

    MEL ZG 573

    • 419 Words
    • 2 Pages

    The major objective of this course is to teach fundamentals of discrete time signals and discrete time systems followed by analysis of discrete time linear time invariant (LTI) systems. Further, it introduces Z-transform and its inverse and followed by their applications to the analysis of LTI systems. A framework for designing analog and digital filters (both FIR and IIR) is introduced starting with mapping of filter specifications from continuous Laplace transformation to Z-transform, structure realization based on Direct, Cascade, and Parallel forms, analysis of finite precision effects, and ultimately implementation and testing. An introduction to DFT followed by algorithms for its efficient computation (FFT) is given. Finally, a brief exposure for using the state-of-the-art DSP architectures for implementing the frequently encountered DSP algorithms: FIR/IIR Filtering and DFT is also provided.…

    • 419 Words
    • 2 Pages
    Satisfactory Essays
  • Satisfactory Essays

    Joke

    • 462 Words
    • 2 Pages

    Introduction to DFT – Properties of DFT – Filtering methods based on DFT – FFT Algorithms Decimation – in – time Algorithms, Decimation – in – frequency Algorithms – Use of FFT in Linear Filtering – DCT.…

    • 462 Words
    • 2 Pages
    Satisfactory Essays