Signals and Systems (Lab) Resource Person : Hafiz Muhammad Ijaz COMSATS Institute of Information Technology Lahore Campus.

Slides:



Advertisements
Similar presentations
Continuous-Time Fourier Transform
Advertisements

Ch 3 Analysis and Transmission of Signals
Math Review with Matlab:
Chapter 5 The Fourier Transform. Basic Idea We covered the Fourier Transform which to represent periodic signals We assumed periodic continuous signals.
Leo Lam © Signals and Systems EE235. Fourier Transform: Leo Lam © Fourier Formulas: Inverse Fourier Transform: Fourier Transform:
Signals and Signal Space
Signals and Systems – Chapter 5
Properties of continuous Fourier Transforms
SIGNAL AND SYSTEM CT Fourier Transform. Fourier’s Derivation of the CT Fourier Transform x(t) -an aperiodic signal -view it as the limit of a periodic.
Autumn Analog and Digital Communications Autumn
PROPERTIES OF FOURIER REPRESENTATIONS
FOURIER TRANSFORMS.
Meiling chensignals & systems1 Lecture #04 Fourier representation for continuous-time signals.
Leo Lam © Signals and Systems EE235. Leo Lam © Fourier Transform Q: What did the Fourier transform of the arbitrary signal say to.
Continuous-Time Signal Analysis: The Fourier Transform
Chapter 4 The Fourier Series and Fourier Transform
Chapter 4 The Fourier Transform EE 207 Dr. Adil Balghonaim.
CH#3 Fourier Series and Transform
Chapter 4 The Fourier Series and Fourier Transform.
Leo Lam © Signals and Systems EE235. Leo Lam © x squared equals 9 x squared plus 1 equals y Find value of y.
ECE 8443 – Pattern Recognition EE 3512 – Signals: Continuous and Discrete Objectives: Linearity Time Shift and Time Reversal Multiplication Integration.
Fourier Transforms Section Kamen and Heck.
1 The Fourier Series for Discrete- Time Signals Suppose that we are given a periodic sequence with period N. The Fourier series representation for x[n]
1 Fourier Representation of Signals and LTI Systems. CHAPTER 3 EKT 232.
1 Review of Continuous-Time Fourier Series. 2 Example 3.5 T/2 T1T1 -T/2 -T 1 This periodic signal x(t) repeats every T seconds. x(t)=1, for |t|
ECE 8443 – Pattern Recognition EE 3512 – Signals: Continuous and Discrete Objectives: Review Resources: Wiki: Superheterodyne Receivers RE: Superheterodyne.
Fourier Series. Introduction Decompose a periodic input signal into primitive periodic components. A periodic sequence T2T3T t f(t)f(t)
1 Fourier Representations of Signals & Linear Time-Invariant Systems Chapter 3.
Chapter 5: Fourier Transform.
Fundamentals of Electric Circuits Chapter 18 Copyright © The McGraw-Hill Companies, Inc. Permission required for reproduction or display.
Signals & systems Ch.3 Fourier Transform of Signals and LTI System 5/30/2016.
EE104: Lecture 5 Outline Review of Last Lecture Introduction to Fourier Transforms Fourier Transform from Fourier Series Fourier Transform Pair and Signal.
Chapter 4 Fourier transform Prepared by Dr. Taha MAhdy.
Husheng Li, UTK-EECS, Fall  Fourier transform is used to study the frequency spectrum of signals.  Basically, it says that a signal can be represented.
Fourier series: Eigenfunction Approach
Linearity Recall our expressions for the Fourier Transform and its inverse: The property of linearity: Proof: (synthesis) (analysis)
Chapter 5 Finite-Length Discrete Transform
Input Function x(t) Output Function y(t) T[ ]. Consider The following Input/Output relations.
CH#3 Fourier Series and Transform
5.0 Discrete-time Fourier Transform 5.1 Discrete-time Fourier Transform Representation for discrete-time signals Chapters 3, 4, 5 Chap 3 Periodic Fourier.
ES97H Biomedical Signal Processing
INTRODUCTION TO SIGNALS
EE 207 Dr. Adil Balghonaim Chapter 4 The Fourier Transform.
Alexander-Sadiku Fundamentals of Electric Circuits
Oh-Jin Kwon, EE dept., Sejong Univ., Seoul, Korea: 2.3 Fourier Transform: From Fourier Series to Fourier Transforms.
Leo Lam © Signals and Systems EE235 Lecture 25.
بسم الله الرحمن الرحيم University of Khartoum Department of Electrical and Electronic Engineering Third Year – 2015 Dr. Iman AbuelMaaly Abdelrahman
ENEE 322: Continuous-Time Fourier Transform (Chapter 4)
ELECTRIC CIRCUITS EIGHTH EDITION JAMES W. NILSSON & SUSAN A. RIEDEL.
Fourier Transform and Spectra
CH#3 Fourier Series and Transform 1 st semester King Saud University College of Applied studies and Community Service 1301CT By: Nour Alhariqi.
EE104: Lecture 6 Outline Announcements: HW 1 due today, HW 2 posted Review of Last Lecture Additional comments on Fourier transforms Review of time window.
UNIT-II FOURIER TRANSFORM
LECTURE 11: FOURIER TRANSFORM PROPERTIES
Continuous-Time Signal Analysis
The Laplace Transform Prof. Brian L. Evans
Chapter 15 Introduction to the Laplace Transform
Chapter 2. Fourier Representation of Signals and Systems
UNIT II Analysis of Continuous Time signal
Advanced Digital Signal Processing
Signals and Systems EE235 Leo Lam ©
Signals & Systems (CNET - 221) Chapter-4 Fourier Series
Signals & Systems (CNET - 221) Chapter-5 Fourier Transform
Signals and Systems EE235 Lecture 23 Leo Lam ©
Continuous-Time Fourier Transform
Signals & Systems (CNET - 221) Chapter-4
4. The Continuous time Fourier Transform
Signals and Systems EE235 Leo Lam ©
Chapter 5 The Fourier Transform.
LECTURE 11: FOURIER TRANSFORM PROPERTIES
Presentation transcript:

Signals and Systems (Lab) Resource Person : Hafiz Muhammad Ijaz COMSATS Institute of Information Technology Lahore Campus

EXPERIMENT # 8 Fourier Transform and its Properties.

In Previous Lab… Introduction to Fourier Series Complex Exponential Fourier Series Representation Trigonometric Fourier series Representation Properties of Fourier series Linearity Time Shifting Time Reversal Signal Multiplication Parseval’s Identity

In this Lab… Introduction to Fourier Transform How to compute Fourier Transform and Inverse Fourier Transform using MATLAB? Implementation of Fourier Transform Pairs Properties of Fourier Transform Linearity Time Shifting Frequency Shifting Scaling in Time and Frequency Time Reversal Fourier Transform of the Even and Odd Part of a Signal Convolution in Time and Frequency Parseval’s Theorem

Introduction to Fourier Transform The mathematical expression of Fourier transform is The mathematical expression of Inverse Fourier transform is The Fourier transform of a signal is called (frequency) spectrum.

Example: Plot the Fourier transform of the continuous time signal x(t) = cos(t)

Solution: syms t w x=cos(t) X=fourier (x,w) w1=[-4:0.05:4] X=subs(X,w,w1) for i=1:length(X) if X(i) == inf X(i) = 1 end plot(w1,X) legend ('F[cos(t)]')

Example: Plot the Fourier transform of the signal x(t) = sin(πt) / (πt)

Example: Compute the Fourier transform of the function Solution: syms t w x=exp(-t^2); fourier(x) Xf=int(x*exp(-j*w*t),t,-inf,inf) xt=ifourier(Xf,t) ans =pi^(1/2)/exp(w^2/4) Xf =pi^(1/2)/exp(w^2/4) xt= 1/exp(t^2)

Fourier Transform Pairs Verify the Fourier transform pair where is a rectangular pulse of duration, given by

Solution: syms t w T x=heaviside(t+T/2)-heaviside(t-T/2); xx=subs(x,T,4); subplot(2,1,1) ezplot(xx,[ -4 4]) legend('x(t)') x1=fourier(x,w) ww=[-10:.1:-.1.1:.1:10]; X=subs(x1,w,ww) X=subs(X,T,4); subplot(2,1,2) plot(ww,X) xlabel('\Omega rad/s') legend('X(\Omega)')

Properties of Fourier Transform

Time and Frequency Shifting Time shifting Property can be written as Frequency shifting Property is given as

Solution syms t w x=cos(t); t0=2; xt0=cos(t-t0); Left=fourier(xt0,w) X=fourier(x,w); Right=exp(-j*w*t0)*X syms t w x=cos(t); w0=2; Le=exp(j*w0*t)*x; Left=fourier(Le,w) X=fourier(x,w); Right=subs(X,w,w-w0)

Scaling in Time and Frequency Scaling in Time domain is given as Scaling in frequency can be written as

Solution syms t w b=3; x=heaviside(t+1)-heaviside(t-1); ezplot(x,[-2 2]); legend('x(t)')

FT of x(t)… X=fourier(x,w); ezplot(X,[-40 40]); legend('X(\Omega)') xlabel('\Omega')

Signal x(bt), b=3 xb=subs(x,t,b*t); ezplot(xb, [-2 2]); legend('x(bt), b=3');

FT of x(bt) Xb=fourier(xb,w); ezplot(Xb, [-40 40]) legend('F(x(bt))') xlabel('\Omega')

X(bw)… Ri=subs(X,w,w/b); Right=(1/abs(b))*Ri; ezplot(Right,[-40 40]); legend('(1/|b|)*X(\Omega/b) ') xlabel('\Omega')

Time Reversal Verify the time reversal property for the signal x(t)=t u(t)

Solution syms t w x=t*heaviside(t); X=fourier(x,w) ; Right=subs(X,w,-w) x_t=subs(x,t,-t); Left=fourier(x_t,w) Right = - 1/w^2 - pi*i*dirac(w, 1) Left = - 1/w^2 + pi*i*dirac(-w, 1)

Duality Satisfy the Duality property for the signal mentioned below.

Solution syms t w x=exp(-t)*heaviside(t); X=fourier(x) Xt=subs(X,w,t) Left=fourier(Xt) x_w=subs(x,t,-w); Right=2*pi*x_w Left = 2*pi*heaviside(-w)*exp(w) Right = 2*pi*heaviside(-w)*exp(w)

Differentiation in Time and Frequency For the signal x(t) Differentiation in time domain is given as Differentiation in Frequency domain can be written as

Solution syms t w x=exp(-3*t)*heaviside(t); der=diff(x,t); Left=fourier(der,w) X=fourier(x,w); Right=j*w*X Left=fourier(t*x,w) der=diff(X,w); Right=j*der Left =1 - 3/(i*w + 3) Right =(i*w)/(i*w + 3) Left =1/(i*w + 3)^2 Right =1/(i*w + 3)^2

Integration For a given signal x(t) Integration property can be written as Satisfy the integration property for

Solution syms t r w x=exp(r)*heaviside(-r)+exp(- r)*heaviside(r); integ=int(x,r,-inf,t); Left=fourier(integ,w) X=fourier(x,w); X0=subs(X,w,0); Right=(1/(j*w))*X+pi*X0*dir ac(w) Left = 2*pi*dirac(w) + ((1/(- 1 + w*i) - 1/(1 + w*i))*i)/w Right = 2*pi*dirac(w) + ((1/(- 1 + w*i) - 1/(1 + w*i))*i)/w

Convolution in Time and Frequency

Solution syms t w x=exp(-t^2); Et=int((abs(x))^2,t,-inf,inf) ; eval(Et) X=fourier(x,w); Ew=(1/(2*pi))*int((abs(X))^2,w,- inf,inf); eval(Ew) ans =1.2533

Parseval’s Theorem Parsvel’s Identity can be written as Satisfy the Parsvel’s Identity using input signal