16.362 Signal and System I Magnitude-phase representation of Fourier Transform Magnitude-phase representation of frequency response of LTI systems.

Slides:



Advertisements
Similar presentations
Continuous-Time Fourier Transform
Advertisements

Review of 1-D Fourier Theory:
Math Review with Matlab:
ECE 8443 – Pattern Recognition EE 3512 – Signals: Continuous and Discrete Objectives: Response to a Sinusoidal Input Frequency Analysis of an RC Circuit.
Copyright ©2010, ©1999, ©1989 by Pearson Education, Inc. All rights reserved. Discrete-Time Signal Processing, Third Edition Alan V. Oppenheim Ronald W.
HILBERT TRANSFORM Fourier, Laplace, and z-transforms change from the time-domain representation of a signal to the frequency-domain representation of the.
Chapter 5 The Fourier Transform. Basic Idea We covered the Fourier Transform which to represent periodic signals We assumed periodic continuous signals.
>> n=-50:50; wc=0.4*pi; >> hn=sinc(n*wc/pi)*wc/pi; >> stem(n,hn); title('Ideal LPF with cutoff frequency = 0.4 \pi')
Cellular Communications
Leo Lam © Signals and Systems EE235. Transformers Leo Lam ©
Signal and System I Continuous-time filters described by differential equations + Recall in Ch. 2 Continuous time Fourier transform. LTI system.
5.1 the frequency response of LTI system 5.2 system function 5.3 frequency response for rational system function 5.4 relationship between magnitude and.
Transforms: Basis to Basis Normal Basis Hadamard Basis Basis functions Method to find coefficients (“Transform”) Inverse Transform.
Leo Lam © Signals and Systems EE235. Leo Lam © Fourier Transform Q: What did the Fourier transform of the arbitrary signal say to.
Systems: Definition Filter
Leo Lam © Signals and Systems EE235. Leo Lam © x squared equals 9 x squared plus 1 equals y Find value of y.
Leo Lam © Signals and Systems EE235. Leo Lam © Fourier Transform Q: What did the Fourier transform of the arbitrary signal say to.
Chapter 2. Signals Husheng Li The University of Tennessee.
Intensity, Intensity Level, and Intensity Spectrum Level
(Lecture #08)1 Digital Signal Processing Lecture# 8 Chapter 5.
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|
Part I: Image Transforms DIGITAL IMAGE PROCESSING.
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.
Signal and System I The unit step response of an LTI system.
1. 2 Ship encountering the superposition of 3 waves.
5.Linear Time-Invariant System
Signals and Systems Using MATLAB Luis F. Chaparro
Fundamentals of Digital Signal Processing. Fourier Transform of continuous time signals with t in sec and F in Hz (1/sec). Examples:
Logarithmic scale Linear scale A logarithmic scale compresses large values and allows a large range to be covered without losing.
1 Conditions for Distortionless Transmission Transmission is said to be distortion less if the input and output have identical wave shapes within a multiplicative.
Leo Lam © Signals and Systems EE235. Leo Lam © Fourier Transform Q: What did the Fourier transform of the arbitrary signal say to.
Transform Analysis of LTI Systems Quote of the Day Any sufficiently advanced technology is indistinguishable from magic. Arthur C. Clarke Content and Figures.
Chapter 2. Fourier Representation of Signals and Systems
Frequency Response of Rational Systems Quote of the Day If knowledge can create problems, it is not through ignorance that we can solve them. Isaac Asimov.
6.0 Time/Frequency Characterization of Signals/Systems
Gustavo Cancelo Analysis of the phase shift error between A and B signals in BPMs BPM project.
The Story of Wavelets Theory and Engineering Applications
Minimum-Phase Systems Quote of the Day Experience is the name everyone gives to their mistakes. Oscar Wilde Content and Figures are from Discrete-Time.
1 “Figures and images used in these lecture notes by permission, copyright 1997 by Alan V. Oppenheim and Alan S. Willsky” Signals and Systems Spring 2003.
Lecture 8: Transform Analysis of LTI System XILIANG LUO 2014/10 1.
Digital Signal Processing Lecture 6 Frequency Selective Filters
ENEE 322: Continuous-Time Fourier Transform (Chapter 4)
Leo Lam © Signals and Systems EE235 Lecture 26.
Dr S D AL_SHAMMA Dr S D AL_SHAMMA11.
Lecture 23 Outline: Laplace Examples, Inverse, Rational Form
Review of Fourier Transform for Continuous-time aperiodic signals.
Signals & systems Ch.3 Fourier Transform of Signals and LTI System
Jean Baptiste Joseph Fourier
Figure 8.1 (p. 615) Time-domain condition for distortionless transmission of a signal through a linear time-invariant system. Signals and Systems, 2/E.
(plus some seismology)
CE Digital Signal Processing Fall Discrete-time Fourier Transform
Digital Signal Processing Lecture 4 DTFT
Signals and Systems EE235 Lecture 26 Leo Lam ©
Quick Review of LTI Systems
لجنة الهندسة الكهربائية
CT-321 Digital Signal Processing
Magnitude/Phase of Transforms and Frequency Responses
Advanced Digital Signal Processing
Lecture 15 DTFT: Discrete-Time Fourier Transform
(plus some seismology)
6. Time and Frequency Characterization of Signals and Systems
CT-321 Digital Signal Processing
Signals and Systems EE235 Leo Lam ©
4. The Continuous time Fourier Transform
Chapter 3 Sampling.
10.3 The Inverse z-Transform
Signals and Systems Using MATLAB Luis F. Chaparro
Signals and Systems Lecture 18
Presentation transcript:

Signal and System I Magnitude-phase representation of Fourier Transform Magnitude-phase representation of frequency response of LTI systems

Signal and System I Ignore reflection at both interfaces Propagation constant

Signal and System I  Is linear with . gives the group delay t 0. represents the group velocity.

Signal and System I  Is linear with . gives the group delay t 0. represents the group velocity.

Signal and System I represents the group velocity. Free space

Signal and System I Example #1 All pass filter

Signal and System I Example #1 All pass filter f 1 = 50 Hz f 2 = 150 Hz f 3 = 300 Hz

Signal and System I Example #1 All pass filter f 1 = 50 Hzf 2 = 150 Hz f 3 = 300 Hz

Signal and System I

clear; clf; f1 = 50; w1 = f1*2*pi; f2 = 150; w2 = f2*2*pi; f3 = 300; w3 = f3*2*pi; ks1 = 0.066; ks2 = 0.033; ks3 = 0.058; od = *2*pi; omega = 0:od:400*2*pi; HW1 =(1+(j*omega./w1).^2-2*j*ks1*(omega./w1)); HW1 = HW1./(1+(j*omega./w1).^2+2*j*ks1*(omega./w1)); HW2 =(1+(j*omega./w2).^2-2*j*ks2*(omega./w2)); HW2 = HW2./(1+(j*omega./w2).^2+2*j*ks2*(omega./w2)); HW3 =(1+(j*omega./w3).^2-2*j*ks3*(omega./w3)); HW3 = HW3./( 1+(j*omega./w3).^2+2*j*ks3*(omega./w3)); HW = HW1.*HW2.*HW3; plot(omega/(2*pi),abs(HW)); zoom on; figure(2) AH = unwrap(angle(HW)); plot(omega/(2*pi),AH); zoom on; DH = -diff(AH); DH = DH./od; figure(3) plot(omega(2:length(omega))/(2*pi), DH); zoom on; % inverse Fourier transform t = 0:0.01:0.2; for n=1:length(t) h(n) = 0; for m=1:length(omega) h(n) = h(n)+HW(m)*exp(j*omega(m)*t(n))*od; end h(n) = h(n)./(2*pi); end figure(4) plot(t,real(h)); zoom on;

Signal and System I Log-magnitude and phase plot dB scale, I, V 10%-20dB90% loss 1%-40dB99% loss dB scale for power, P, intensity 10%-10dB90% loss 1%-20dB99% loss f (Hz) 50%-3dB50% loss

Signal and System I Time-domain properties of ideal frequency-selective filter #1 #2 #3