0% found this document useful (0 votes)
31 views26 pages

AvE-4 Lect2 Fourier Transform

The document discusses Fourier transforms and series. It covers the basics of Fourier series representation of periodic signals as sinusoids. It also discusses how Fourier transforms convert aperiodic time domain signals to complex sinusoids in the frequency domain. The document provides examples of computing Fourier transforms in MATLAB and plotting the results.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PPTX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
31 views26 pages

AvE-4 Lect2 Fourier Transform

The document discusses Fourier transforms and series. It covers the basics of Fourier series representation of periodic signals as sinusoids. It also discusses how Fourier transforms convert aperiodic time domain signals to complex sinusoids in the frequency domain. The document provides examples of computing Fourier transforms in MATLAB and plotting the results.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PPTX, PDF, TXT or read online on Scribd
You are on page 1/ 26

11/15/21 1

Analog and Digital Communication

AvE-4

Credit Hours : 3

11/15/21 2
Message of the day

11/15/21 3
Fourier transform
(Chapter 2 – Text Book)
Lecture 2
Lecture Objectives

 Review the Fourier Transform with focus


on physical Applications
 Review methods of computation of
Fourier Transform

Text book Chapter 2; Lecture Notes

11/15/21 5
Fourier Series

Fourier series represent periodic signals in terms of


sinusoids or complex exponentials. A signal u(t) is
periodic with period T if u(t + T) = u(t) for all t. Note
that, if u is periodic with period T, then it is also
periodic with period nT, where n is any positive
integer. The smallest time interval for which u(t) is
periodic is termed the fundamental period.

11/15/21 6
Fourier Series

11/15/21 7
Fourier Series

11/15/21 8
Fourier Series

Example Fourier series of a square wave:


Consider the periodic waveform u(t) as shown in
Figure

11/15/21 9
Fourier Series

11/15/21 10
Fourier Series

11/15/21 11
Fourier Series

Why does not sum of Fourier component


waves make a perfect square wave?
11/15/21 12
Fourier Series

11/15/21 13
Fourier Transform

11/15/21 14
Fourier Transform

11/15/21 15
Fourier Transform

Frequency Division Multiplexing


?
Why do you think we need to use Fourier
transform in Communication Systems?

Time Division Multiplexing

Why do we need to move to frequency domain in


Communication Systems?

11/15/21 16
Fourier Transform

Fourier transform converts aperiodic time domain signal to Complex Sinusoids,


which follow circular paths using Euler’s Formula

11/15/21 17
Fourier Transform

11/15/21 18
Computing Fourier Transform
in Matlab

Digital Fourier Transform

Fast Fourier Transform

11/15/21 19
Computing Fourier Transform
in Matlab

t = 0:.001:.25;
x = sin(2*pi*50*t) + sin(2*pi*120*t);

Add some random noise with a standard deviation of 2 to


produce a noisy signal y. Take a look at this noisy signal y by
plotting it.

y = x + 2*randn(size(t));
plot(y(1:50))
title('Noisy time domain signal')

11/15/21 20
Computing Fourier Transform
in Matlab

11/15/21 21
Computing Fourier Transform
in Matlab
Y = fft(y,256);

Compute the power spectral density, a measurement of the


energy at various frequencies, using the complex conjugate
(CONJ). Form a frequency axis for the first 127 points and use
it to plot the result. (The remainder of the 256 points are
symmetric.)
Pyy = Y.*conj(Y)/256;
f = 1000/256*(0:127);
plot(f,Pyy(1:128))
title('Power spectral density')
xlabel('Frequency (Hz)‘
plot(f(1:50),Pyy(1:50))
title('Power spectral density')
xlabel('Frequency (Hz)')
11/15/21 22
Computing Fourier Transform
in Matlab

11/15/21 23
Computing Fourier Transform
in Matlab

11/15/21 24
Computing Fourier Transform
in Matlab

11/15/21 25
11/15/21 26

You might also like