Assignment 2 Solutions Fourier Series

Size: px
Start display at page:

Download "Assignment 2 Solutions Fourier Series"

Transcription

1 Assignment 2 Solutions Fourier Series ECE 223 Signals and Systems II Version.2 Spring 26. DT Fourier Series. Consider the following discrete-time periodic signal n = +7l n =+7l x[n] = n =+7l Otherwise where l is any integer. a. What is the fundamental period of this signal. N =7 b. Does the signal have even or odd symmetry? Yes, it is even. c. Plot four fundamental periods of the signal Time Index (n)

2 d. Plot the real and imaginary parts of the Fourier series coefficients X[k]. Real X[k] 5 5 Imaginary X[k] 5 5 Frequency Index (k) e. Plot the magnitude and phase of the Fourier series coefficients X[k]. X[k] X[k] (degrees) 5 5 Frequency Index (k) f. How are real, negative coefficients represented in polar (magnitude & phase) form? The magnitude is equal to the absolute value of the real coefficient, X[k] = Re{X[k]}. The phase is if the coefficients are positive and ±8 if the coefficients are negative, X[k] =±8 sign(x[k]). g. What type of symmetry do the coefficients have? Complex conjugate symmetry: X[ k] =X [k]. Since the coefficients are real in this case, they also have even symmetry: X[ k] =X[k]. h. What is the fundamental period of the coefficients? K =7, X[k +7]=X[k]. 2

3 i. Plot the real and imaginary parts of the DT sinusoids that comprise the discrete-time signal. Re. k= Im. k= Re. k= 2 Im. k= Re. k= Im. k= Re. k= Im. k= Re. k= Im. k= Re. k=2 Im. k= Re. k=3 Im. k= j. Plot the real and imaginary parts of the sum of the DT sinusoids that comprise the discrete-time signal. 3

4 Real Part Imaginary Part Time Index (n) k. How does the sum of the complex sinusoids compare to the original signal? They are identical. function [] = DTFourierSeries N = 7; % Fundamental period n = -2*N:2*N; % Time indices x = -*(mod(n,n)==-+n) + *(mod(n,n)==) -*(mod(n,n)==); % Signal k = -2*N:2*N; % Frequency indices Omega = 2*pi/N; % Fundamental frequency for c=:length(k) X(c) = sum(x(:n).*exp(-j*k(c)*omega.*n(:n)))/n; end % Calculate the DT Fourier series coefficients % Plot of the Signal FigureSet(,5); h = stem(n,x, b ); xlim([n()-.5 n(end)+.5]); ylim([-.5.5]); xlabel( Time Index (n) ); print( DTFourierSeries-Signal, -depsc ); % Plot of the Fourier Series Coefficients (Rectangular form) FigureSet(,5); subplot(2,,); h = stem(k,real(x), r ); xlim([k()-.5 k(end)+.5]); ylim(.5*max(abs(x))*[- ]); h = get(gca, YLabel ); ylabel( Real $X[k]$ ); 4

5 subplot(2,,2); h = stem(k,imag(x), r ); xlim([k()-.5 k(end)+.5]); ylim(.5*max(abs(x))*[- ]); h = get(gca, YLabel ); h = get(gca, XLabel ); ylabel( Imaginary $X[k]$ ); xlabel( Frequency Index ($k$) ); print( DTFourierSeries-FourierSeriesRectangular, -depsc ); % Plot of the Fourier Series Coefficients (Rectangular form) FigureSet(,5); subplot(2,,); h = stem(k,abs(x), r ); xlim([k()-.5 k(end)+.5]); ylim([.5*max(abs(x))]); h = get(gca, YLabel ); ylabel( $ X[k] $ ); subplot(2,,2); h = stem(k,angle(x)*8/pi, r ); xlim([k()-.5 k(end)+.5]); ylim(9*[- ]); h = get(gca, YLabel ); h = get(gca, XLabel ); ylabel( $\angle X[k]$ (degrees) ); xlabel( Frequency Index ($k$) ); print( DTFourierSeries-FourierSeriesPolar, -depsc ); % Plot of the Fourier Series Components FigureSet(,5,9); cplots = ; % Plot counter s = zeros(size(n)); % Memory allocation for the sum for c=-(n-)/2:(n-)/2 ik = find(k==c); c = X(ik)*exp(j*c*Omega*n); % Component s = s + c; subplot(n,2,cplots); h = stem(n,real(c), b ); cplots = cplots + ; xlim([n()-.5 n(end)+.5]); ylim(.5*max(abs(x))*[- ]); ylabel(sprintf( Re. k=%d,c)); 5

6 subplot(n,2,cplots); h = stem(n,imag(c), b ); cplots = cplots + ; xlim([n()-.5 n(end)+.5]); ylim(.5*max(abs(x))*[- ]); ylabel(sprintf( Im. k=%d,c)); end print( DTFourierSeries-FourierSeriesComponents, -depsc ); % Sum of Components FigureSet(,5); subplot(2,,); h = stem(n,real(s), b ); xlim([n()-.5 n(end)+.5]); ylim([-.5.5]); ylabel( Real Part ); subplot(2,,2); h = stem(n,imag(s), b ); xlim([n()-.5 n(end)+.5]); ylim([-.5.5]); xlabel( Time Index (n) ); ylabel( Imaginary Part ); print( DTFourierSeries-SumOfComponents, -depsc ); 2. CT Fourier Series. Consider the following continuous-time periodic signal { t +7l t +7l x(t) = Otherwise where l is any integer. a. What is the fundamental period of this signal. T =7 b. Does the signal have even or odd symmetry? Yes, the signal is odd. c. Plot four fundamental periods of the signal. 6

7 Time (s) d. Solve for the Fourier series coefficients. Simplify your expression as much as possible. Hint: te at dt = a 2 e at (at ) + C. X[k] = T T x(t)e jkωt dt = te jkωt dt T = T ( jkω) 2 e jkωt ( jkωt ) [ = e jkω ( jkω ) e jkω (jkω ) ] T (jkω) 2 [ ( = jkω e jkω +e jkω) + ( e jkω e jkω)] T (jkω) 2 = [ j2kω cos(kω)+j2sin(kω)] T (kω) 2 j2kω cos(kω) j2sin(kω) = T (kω) 2 = = j2k 2π T cos(k 2π j4πk cos(k 2π T T ) j2sin(k 2π T ) T (k 2π T )2 ) j2t sin(k 2π T ) (2πk) 2 e. Plot the real and imaginary parts of the Fourier series coefficients X[k]. 7

8 Real X[k] Imaginary X[k] Frequency Index (k) f. Plot the magnitude and phase of the Fourier series coefficients X[k].. X[k] X[k] (degrees) Frequency Index (k) g. What type of symmetry do the coefficients have? Complex conjugate symmetry: X[ k] =X [k]. In this case the coefficients are imaginary, so they also have odd symmetry: X[ k] = X[k]. h. What is the fundamental period of the coefficients? The coefficients are not periodic and do not have a fundamental period. i. Plot the real and imaginary parts of the CT complex sinusoids that comprise the continuous-time signal for k = 5 tok =5. 8

9 Re. k=5 Re. k=4 Re. k=3 Re. k=2 Re. k= Re. k= Re. k= Re. k= 2 Re. k= 3 Re. k= 4 Re. k= Im. k=5 Im. k=4 Im. k=3 Im. k=2 Im. k= Im. k= Im. k= Im. k= 2 Im. k= 3 Im. k= 4 Im. k= j. Plot the partial sums of the analysis equation, K ˆx K (t) = X[k]e jkωt k= K of the CT complex sinusoids that comprise the continuous-time signal for K =, 2, 3, 4, 5, 25, 5,. 9

10 Re. K= Im. K= Re. K=2 Im. K= Re. K=3 Im. K= Re. K=4 Im. K= Re. K=5 Im. K= Re. K=25 Im. K= Re. K=5 Im. K= Re. K= 5 5 Im. K= 5 5 k. Plot the mean square error of the partial sums for K =,...,.

11 Mean Square Error Partial Sum Limit (K) l. How do the partial sums of the complex sinusoids compare to the original signal? They are approximations of the original signal. The approximations with a greater number of terms are more accurate. m. In the limit, does the following equality hold? lim ˆx K(t) =x(t) K No. This signal contains a discontinuity. At the times of the discontinuities the signal and the Fourier series approximations will not be equal, in general. However, the mean square error will approach zero as K. function [] = CTFourierSeries T = 7; % Fundamental period omega = 2*pi/T; % Fundamental frequency (rad/sec) t = linspace(-2*t,2*t,); % Time indices tmod = mod(t,t); x = -(T-tmod).*(-+T<=tmod & tmod<=+t) + tmod.*(tmod<=); % Signal kn = -:-; Xn = (j*4*pi*kn.*cos(kn*2*pi/t)-j*2*t*sin(kn*2*pi/t))./(2*pi*kn).^2; kp = :; Xp = (j*4*pi*kp.*cos(kp*2*pi/t)-j*2*t*sin(kp*2*pi/t))./(2*pi*kp).^2; k = [kn kp]; X = [Xn Xp]; % Plot of the Signal FigureSet(,5); h = plot(t,x, b ); xlim([t() t(end)]); ylim([-.5.5]); xlabel( Time (s) );

12 print( CTFourierSeries-Signal, -depsc ); % Plot of the Fourier Series Coefficients (Rectangular form) FigureSet(,5); subplot(2,,); h = stem(k,real(x), r ); xlim([k()-.5 k(end)+.5]); ylim(.5*max(abs(x))*[- ]); h = get(gca, YLabel ); ylabel( Real $X[k]$ ); subplot(2,,2); h = stem(k,imag(x), r ); xlim([k()-.5 k(end)+.5]); ylim(.5*max(abs(x))*[- ]); h = get(gca, YLabel ); h = get(gca, XLabel ); ylabel( Imaginary $X[k]$ ); xlabel( Frequency Index ($k$) ); print( CTFourierSeries-FourierSeriesRectangular, -depsc ); % Plot of the Fourier Series Coefficients (Rectangular form) FigureSet(,5); subplot(2,,); h = stem(k,abs(x), r ); xlim([k()-.5 k(end)+.5]); ylim([.5*max(abs(x))]); h = get(gca, YLabel ); ylabel( $ X[k] $ ); subplot(2,,2); h = stem(k,angle(x)*8/pi, r ); xlim([k()-.5 k(end)+.5]); ylim(9*[- ]); h = get(gca, YLabel ); h = get(gca, XLabel ); ylabel( $\angle X[k]$ (degrees) ); xlabel( Frequency Index ($k$) ); print( CTFourierSeries-FourierSeriesPolar, -depsc ); 2

13 % Plot of the Fourier Series Components FigureSet(,5,9); cplots = ; % Plot counter s = zeros(size(t)); % Memory allocation for the sum for c=-5:5, ik = find(k==c); c = X(ik)*exp(j*c*omega*t); % Component s = s + c; subplot(5*2+,2,cplots); h = plot(t,real(c), b ); cplots = cplots + ; xlim([t() t(end)]); ylim(.5*max(abs(x))*[- ]); ylabel(sprintf( Re. k=%d,c)); subplot(5*2+,2,cplots); h = plot(t,imag(c), b ); cplots = cplots + ; xlim([t() t(end)]); ylim(.5*max(abs(x))*[- ]); ylabel(sprintf( Im. k=%d,c)); end print( CTFourierSeries-FourierSeriesComponents, -depsc ); % Plot of the Partial Sums FigureSet(,5,9); K = [,2,3,4,5,25,5,]; cplots = ; % Plot counter s = zeros(size(t)); % Memory allocation for the sum mse = zeros(max(k),); for c=:max(k), ip = find(k== c); % Index of positive coefficient in = find(k==-c); % Index of negative coefficient c = X(ip)*exp(j*c*omega*t) + X(in)*exp(-j*c*omega*t); % Component s = s + c; % Partial sum, k=-c to c mse(c+) = mean(abs(x-s).^2); if any(c==k), subplot(length(k),2,cplots); h = plot(t,real(s), b ); cplots = cplots + ; xlim([t() t(end)]); ylim([-.5.5]); ylabel(sprintf( Re. K=%d,c)); subplot(length(k),2,cplots); h = plot(t,imag(s), b ); cplots = cplots + ; xlim([t() t(end)]); ylim([-.5.5]); ylabel(sprintf( Im. K=%d,c)); end end print( CTFourierSeries-PartialSums, -depsc ); % Plot of the Mean Square Error of the Partial Sums 3

14 FigureSet(,5); h = stem(:max(k),mse, k ); xlim([-.5 max(k)+.5]); ylim([ max(mse)*.5]); xlabel( Partial Sum Limit (K) ); ylabel( Mean Square Error ); print( CTFourierSeries-MSE, -depsc ); 4

Fast Fourier Transform Discrete-time windowing Discrete Fourier Transform Relationship to DTFT Relationship to DTFS Zero padding

Fast Fourier Transform Discrete-time windowing Discrete Fourier Transform Relationship to DTFT Relationship to DTFS Zero padding Fast Fourier Transform Discrete-time windowing Discrete Fourier Transform Relationship to DTFT Relationship to DTFS Zero padding Fourier Series & Transform Summary x[n] = X[k] = 1 N k= n= X[k]e jkω

More information

J. McNames Portland State University ECE 223 DT Fourier Series Ver

J. McNames Portland State University ECE 223 DT Fourier Series Ver Overview of DT Fourier Series Topics Orthogonality of DT exponential harmonics DT Fourier Series as a Design Task Picking the frequencies Picking the range Finding the coefficients Example J. McNames Portland

More information

Fast Fourier Transform Discrete-time windowing Discrete Fourier Transform Relationship to DTFT Relationship to DTFS Zero padding

Fast Fourier Transform Discrete-time windowing Discrete Fourier Transform Relationship to DTFT Relationship to DTFS Zero padding Fast Fourier Transform Discrete-time windowing Discrete Fourier Transform Relationship to DTFT Relationship to DTFS Zero padding J. McNames Portland State University ECE 223 FFT Ver. 1.03 1 Fourier Series

More information

Assignment 4 Solutions Continuous-Time Fourier Transform

Assignment 4 Solutions Continuous-Time Fourier Transform Assignment 4 Solutions Continuous-Time Fourier Transform ECE 3 Signals and Systems II Version 1.01 Spring 006 1. Properties of complex numbers. Let c 1 α 1 + jβ 1 and c α + jβ be two complex numbers. a.

More information

Fourier series for continuous and discrete time signals

Fourier series for continuous and discrete time signals 8-9 Signals and Systems Fall 5 Fourier series for continuous and discrete time signals The road to Fourier : Two weeks ago you saw that if we give a complex exponential as an input to a system, the output

More information

Overview of Discrete-Time Fourier Transform Topics Handy Equations Handy Limits Orthogonality Defined orthogonal

Overview of Discrete-Time Fourier Transform Topics Handy Equations Handy Limits Orthogonality Defined orthogonal Overview of Discrete-Time Fourier Transform Topics Handy equations and its Definition Low- and high- discrete-time frequencies Convergence issues DTFT of complex and real sinusoids Relationship to LTI

More information

Signals & Systems. Lecture 4 Fourier Series Properties & Discrete-Time Fourier Series. Alp Ertürk

Signals & Systems. Lecture 4 Fourier Series Properties & Discrete-Time Fourier Series. Alp Ertürk Signals & Systems Lecture 4 Fourier Series Properties & Discrete-Time Fourier Series Alp Ertürk alp.erturk@kocaeli.edu.tr Fourier Series Representation of Continuous-Time Periodic Signals Synthesis equation:

More information

6.003 Homework #10 Solutions

6.003 Homework #10 Solutions 6.3 Homework # Solutions Problems. DT Fourier Series Determine the Fourier Series coefficients for each of the following DT signals, which are periodic in N = 8. x [n] / n x [n] n x 3 [n] n x 4 [n] / n

More information

Signals & Systems. Lecture 5 Continuous-Time Fourier Transform. Alp Ertürk

Signals & Systems. Lecture 5 Continuous-Time Fourier Transform. Alp Ertürk Signals & Systems Lecture 5 Continuous-Time Fourier Transform Alp Ertürk alp.erturk@kocaeli.edu.tr Fourier Series Representation of Continuous-Time Periodic Signals Synthesis equation: x t = a k e jkω

More information

Core Concepts Review. Orthogonality of Complex Sinusoids Consider two (possibly non-harmonic) complex sinusoids

Core Concepts Review. Orthogonality of Complex Sinusoids Consider two (possibly non-harmonic) complex sinusoids Overview of Continuous-Time Fourier Transform Topics Definition Compare & contrast with Laplace transform Conditions for existence Relationship to LTI systems Examples Ideal lowpass filters Relationship

More information

Overview of Sampling Topics

Overview of Sampling Topics Overview of Sampling Topics (Shannon) sampling theorem Impulse-train sampling Interpolation (continuous-time signal reconstruction) Aliasing Relationship of CTFT to DTFT DT processing of CT signals DT

More information

Homework 3 Solutions

Homework 3 Solutions EECS Signals & Systems University of California, Berkeley: Fall 7 Ramchandran September, 7 Homework 3 Solutions (Send your grades to ee.gsi@gmail.com. Check the course website for details) Review Problem

More information

J. McNames Portland State University ECE 223 Sampling Ver

J. McNames Portland State University ECE 223 Sampling Ver Overview of Sampling Topics (Shannon) sampling theorem Impulse-train sampling Interpolation (continuous-time signal reconstruction) Aliasing Relationship of CTFT to DTFT DT processing of CT signals DT

More information

Chapter 4 The Fourier Series and Fourier Transform

Chapter 4 The Fourier Series and Fourier Transform Chapter 4 The Fourier Series and Fourier Transform Fourier Series Representation of Periodic Signals Let x(t) be a CT periodic signal with period T, i.e., xt ( + T) = xt ( ), t R Example: the rectangular

More information

Chapter 4 The Fourier Series and Fourier Transform

Chapter 4 The Fourier Series and Fourier Transform Chapter 4 The Fourier Series and Fourier Transform Representation of Signals in Terms of Frequency Components Consider the CT signal defined by N xt () = Acos( ω t+ θ ), t k = 1 k k k The frequencies `present

More information

Chapter 5 Frequency Domain Analysis of Systems

Chapter 5 Frequency Domain Analysis of Systems Chapter 5 Frequency Domain Analysis of Systems CT, LTI Systems Consider the following CT LTI system: xt () ht () yt () Assumption: the impulse response h(t) is absolutely integrable, i.e., ht ( ) dt< (this

More information

Table 1: Properties of the Continuous-Time Fourier Series. Property Periodic Signal Fourier Series Coefficients

Table 1: Properties of the Continuous-Time Fourier Series. Property Periodic Signal Fourier Series Coefficients able : Properties of the Continuous-ime Fourier Series x(t = e jkω0t = = x(te jkω0t dt = e jk(/t x(te jk(/t dt Property Periodic Signal Fourier Series Coefficients x(t y(t } Periodic with period and fundamental

More information

Representing a Signal

Representing a Signal The Fourier Series Representing a Signal The convolution method for finding the response of a system to an excitation takes advantage of the linearity and timeinvariance of the system and represents the

More information

Chapter 5 Frequency Domain Analysis of Systems

Chapter 5 Frequency Domain Analysis of Systems Chapter 5 Frequency Domain Analysis of Systems CT, LTI Systems Consider the following CT LTI system: xt () ht () yt () Assumption: the impulse response h(t) is absolutely integrable, i.e., ht ( ) dt< (this

More information

Table 1: Properties of the Continuous-Time Fourier Series. Property Periodic Signal Fourier Series Coefficients

Table 1: Properties of the Continuous-Time Fourier Series. Property Periodic Signal Fourier Series Coefficients able : Properties of the Continuous-ime Fourier Series x(t = a k e jkω0t = a k = x(te jkω0t dt = a k e jk(/t x(te jk(/t dt Property Periodic Signal Fourier Series Coefficients x(t y(t } Periodic with period

More information

Fourier Representations of Signals & LTI Systems

Fourier Representations of Signals & LTI Systems 3. Introduction. A signal can be represented as a weighted superposition of complex sinusoids. x(t) or x[n] 2. LTI system: LTI System Output = A weighted superposition of the system response to each complex

More information

Frequency Analysis: The Fourier

Frequency Analysis: The Fourier CHAPTER 4 Frequency Analysis: The Fourier Series A Mathematician is a device for turning coffee into theorems. Paul Erdos (93 996) mathematician 4. INTRODUCTION In this chapter and the next we consider

More information

Chapter 1 Fundamental Concepts

Chapter 1 Fundamental Concepts Chapter 1 Fundamental Concepts Signals A signal is a pattern of variation of a physical quantity as a function of time, space, distance, position, temperature, pressure, etc. These quantities are usually

More information

Homework 6. April 11, H(s) = Y (s) X(s) = s 1. s 2 + 3s + 2

Homework 6. April 11, H(s) = Y (s) X(s) = s 1. s 2 + 3s + 2 Homework 6 April, 6 Problem Steady state of LTI systems The transfer function of an LTI system is H(s) = Y (s) X(s) = s s + 3s + If the input to this system is x(t) = + cos(t + π/4), < t

More information

Discrete Fourier Transform

Discrete Fourier Transform Discrete Fourier Transform Valentina Hubeika, Jan Černocký DCGM FIT BUT Brno, {ihubeika,cernocky}@fit.vutbr.cz Diskrete Fourier transform (DFT) We have just one problem with DFS that needs to be solved.

More information

Problem Set 9 Solutions

Problem Set 9 Solutions Problem Set 9 Solutions EE23: Digital Signal Processing. From Figure below, we see that the DTFT of the windowed sequence approaches the actual DTFT as the window size increases. Gibb s phenomenon is absent

More information

Frequency Response and Continuous-time Fourier Series

Frequency Response and Continuous-time Fourier Series Frequency Response and Continuous-time Fourier Series Recall course objectives Main Course Objective: Fundamentals of systems/signals interaction (we d like to understand how systems transform or affect

More information

3.2 Complex Sinusoids and Frequency Response of LTI Systems

3.2 Complex Sinusoids and Frequency Response of LTI Systems 3. Introduction. A signal can be represented as a weighted superposition of complex sinusoids. x(t) or x[n]. LTI system: LTI System Output = A weighted superposition of the system response to each complex

More information

Windowing Overview Relevance Main lobe/side lobe tradeoff Popular windows Examples

Windowing Overview Relevance Main lobe/side lobe tradeoff Popular windows Examples ing Overview Relevance Main lobe/side lobe tradeoff Popular windows Examples ing In practice, we cannot observe a signal x(n) for n = to n = Thus we must truncate, or window, the signal: x(n) w(n) ing

More information

3. Frequency-Domain Analysis of Continuous- Time Signals and Systems

3. Frequency-Domain Analysis of Continuous- Time Signals and Systems 3. Frequency-Domain Analysis of Continuous- ime Signals and Systems 3.. Definition of Continuous-ime Fourier Series (3.3-3.4) 3.2. Properties of Continuous-ime Fourier Series (3.5) 3.3. Definition of Continuous-ime

More information

CHAPTER 7. The Discrete Fourier Transform 436

CHAPTER 7. The Discrete Fourier Transform 436 CHAPTER 7. The Discrete Fourier Transform 36 hfa figconfg( P7a, long ); subplot() stem(k,abs(ck), filled );hold on stem(k,abs(ck_approx), filled, color, red ); xlabel( k, fontsize,lfs) title( Magnitude

More information

CH.4 Continuous-Time Fourier Series

CH.4 Continuous-Time Fourier Series CH.4 Continuous-Time Fourier Series First step to Fourier analysis. My mathematical model is killing me! The difference between mathematicians and engineers is mathematicians develop mathematical tools

More information

(i) Represent continuous-time periodic signals using Fourier series

(i) Represent continuous-time periodic signals using Fourier series Fourier Series Chapter Intended Learning Outcomes: (i) Represent continuous-time periodic signals using Fourier series (ii) (iii) Understand the properties of Fourier series Understand the relationship

More information

3 Fourier Series Representation of Periodic Signals

3 Fourier Series Representation of Periodic Signals 65 66 3 Fourier Series Representation of Periodic Signals Fourier (or frequency domain) analysis constitutes a tool of great usefulness Accomplishes decomposition of broad classes of signals using complex

More information

Homework 6 EE235, Spring 2011

Homework 6 EE235, Spring 2011 Homework 6 EE235, Spring 211 1. Fourier Series. Determine w and the non-zero Fourier series coefficients for the following functions: (a 2 cos(3πt + sin(1πt + π 3 w π e j3πt + e j3πt + 1 j2 [ej(1πt+ π

More information

Chapter 1 Fundamental Concepts

Chapter 1 Fundamental Concepts Chapter 1 Fundamental Concepts 1 Signals A signal is a pattern of variation of a physical quantity, often as a function of time (but also space, distance, position, etc). These quantities are usually the

More information

Chapter 5. Fourier Analysis for Discrete-Time Signals and Systems Chapter

Chapter 5. Fourier Analysis for Discrete-Time Signals and Systems Chapter Chapter 5. Fourier Analysis for Discrete-Time Signals and Systems Chapter Objec@ves 1. Learn techniques for represen3ng discrete-)me periodic signals using orthogonal sets of periodic basis func3ons. 2.

More information

SIGNALS AND SYSTEMS: PAPER 3C1 HANDOUT 6a. Dr David Corrigan 1. Electronic and Electrical Engineering Dept.

SIGNALS AND SYSTEMS: PAPER 3C1 HANDOUT 6a. Dr David Corrigan 1. Electronic and Electrical Engineering Dept. SIGNALS AND SYSTEMS: PAPER 3C HANDOUT 6a. Dr David Corrigan. Electronic and Electrical Engineering Dept. corrigad@tcd.ie www.mee.tcd.ie/ corrigad FOURIER SERIES Have seen how the behaviour of systems can

More information

Lecture 13: Discrete Time Fourier Transform (DTFT)

Lecture 13: Discrete Time Fourier Transform (DTFT) Lecture 13: Discrete Time Fourier Transform (DTFT) ECE 401: Signal and Image Analysis University of Illinois 3/9/2017 1 Sampled Systems Review 2 DTFT and Convolution 3 Inverse DTFT 4 Ideal Lowpass Filter

More information

DSP Laboratory (EELE 4110) Lab#5 DTFS & DTFT

DSP Laboratory (EELE 4110) Lab#5 DTFS & DTFT Islamic University of Gaza Faculty of Engineering Electrical Engineering Department EG.MOHAMMED ELASMER Spring-22 DSP Laboratory (EELE 4) Lab#5 DTFS & DTFT Discrete-Time Fourier Series (DTFS) The discrete-time

More information

16.362: Signals and Systems: 1.0

16.362: Signals and Systems: 1.0 16.362: Signals and Systems: 1.0 Prof. K. Chandra ECE, UMASS Lowell September 1, 2016 1 Background The pre-requisites for this course are Calculus II and Differential Equations. A basic understanding of

More information

Fourier series: Additional notes

Fourier series: Additional notes Fourier series: Additional notes Linking Fourier series representations for signals Rectangular waveform Require FS expansion of signal y(t) below: 1 y(t) 1 4 4 8 12 t (seconds) Period T = 8, so ω = 2π/T

More information

Introduction to Signal Analysis Parts I and II

Introduction to Signal Analysis Parts I and II 41614 Dynamics of Machinery 23/03/2005 IFS Introduction to Signal Analysis Parts I and II Contents 1 Topics of the Lecture 11/03/2005 (Part I) 2 2 Fourier Analysis Fourier Series, Integral and Complex

More information

Phonon dispersion relation and density of states of a simple cubic lattice

Phonon dispersion relation and density of states of a simple cubic lattice Phonon dispersion relation and density of states of a simple cubic lattice Student project for the course Molecular and Solid State Physics by Eva Meisterhofer Contents 1 The linear spring model 3 1.1

More information

Topic 3: Fourier Series (FS)

Topic 3: Fourier Series (FS) ELEC264: Signals And Systems Topic 3: Fourier Series (FS) o o o o Introduction to frequency analysis of signals CT FS Fourier series of CT periodic signals Signal Symmetry and CT Fourier Series Properties

More information

GEORGIA INSTITUTE OF TECHNOLOGY SCHOOL OF ELECTRICAL AND COMPUTER ENGINEERING

GEORGIA INSTITUTE OF TECHNOLOGY SCHOOL OF ELECTRICAL AND COMPUTER ENGINEERING GEORGIA INSTITUTE OF TECHNOLOGY SCHOOL OF ELECTRICAL AND COMPUTER ENGINEERING ECE 2026 Summer 2018 Problem Set #1 Assigned: May 14, 2018 Due: May 22, 2018 Reading: Chapter 1; App. A on Complex Numbers,

More information

EEO 401 Digital Signal Processing Prof. Mark Fowler

EEO 401 Digital Signal Processing Prof. Mark Fowler EEO 4 Digital Signal Processing Pro. Mark Fowler ote Set # Using the DFT or Spectral Analysis o Signals Reading Assignment: Sect. 7.4 o Proakis & Manolakis Ch. 6 o Porat s Book /9 Goal o Practical Spectral

More information

Signals and Systems: Introduction

Signals and Systems: Introduction Dependent variable Signals and Systems: Introduction What is a signal? Signals may describe a wide variety of physical phenomena. The information in a signal is contained in a pattern of variations of

More information

Change in Notation. e (i) (n) Note that this is inconsistent with the notation used earlier, c k+1x(n k) e (i) (n) x(n i) ˆx(n i) M

Change in Notation. e (i) (n) Note that this is inconsistent with the notation used earlier, c k+1x(n k) e (i) (n) x(n i) ˆx(n i) M Overview of Linear Prediction Terms and definitions Nonstationary case Stationary case Forward linear prediction Backward linear prediction Stationary processes Exchange matrices Examples Properties Introduction

More information

Chapter 3 Fourier Representations of Signals and Linear Time-Invariant Systems

Chapter 3 Fourier Representations of Signals and Linear Time-Invariant Systems Chapter 3 Fourier Representations of Signals and Linear Time-Invariant Systems Introduction Complex Sinusoids and Frequency Response of LTI Systems. Fourier Representations for Four Classes of Signals

More information

ECE-700 Review. Phil Schniter. January 5, x c (t)e jωt dt, x[n]z n, Denoting a transform pair by x[n] X(z), some useful properties are

ECE-700 Review. Phil Schniter. January 5, x c (t)e jωt dt, x[n]z n, Denoting a transform pair by x[n] X(z), some useful properties are ECE-7 Review Phil Schniter January 5, 7 ransforms Using x c (t) to denote a continuous-time signal at time t R, Laplace ransform: X c (s) x c (t)e st dt, s C Continuous-ime Fourier ransform (CF): ote that:

More information

Spectrograms Overview Introduction and motivation Windowed estimates as filter banks Uncertainty principle Examples Other estimates

Spectrograms Overview Introduction and motivation Windowed estimates as filter banks Uncertainty principle Examples Other estimates Spectrograms Overview Introduction and motivation Windowed estimates as filter banks Uncertainty principle Examples Other estimates J. McNames Portland State University ECE 3 Spectrograms Ver. 1.1 1 Introduction

More information

STEP Support Programme. Pure STEP 3 Solutions

STEP Support Programme. Pure STEP 3 Solutions STEP Support Programme Pure STEP 3 Solutions S3 Q6 Preparation Completing the square on gives + + y, so the centre is at, and the radius is. First draw a sketch of y 4 3. This has roots at and, and you

More information

Lecture 7: Interpolation

Lecture 7: Interpolation Lecture 7: Interpolation ECE 401: Signal and Image Analysis University of Illinois 2/9/2017 1 Sampling Review 2 Interpolation and Upsampling 3 Spectrum of Interpolated Signals Outline 1 Sampling Review

More information

Review of Frequency Domain Fourier Series: Continuous periodic frequency components

Review of Frequency Domain Fourier Series: Continuous periodic frequency components Today we will review: Review of Frequency Domain Fourier series why we use it trig form & exponential form how to get coefficients for each form Eigenfunctions what they are how they relate to LTI systems

More information

ECE 301 Fall 2011 Division 1. Homework 1 Solutions.

ECE 301 Fall 2011 Division 1. Homework 1 Solutions. ECE 3 Fall 2 Division. Homework Solutions. Reading: Course information handout on the course website; textbook sections.,.,.2,.3,.4; online review notes on complex numbers. Problem. For each discrete-time

More information

EECS 20. Midterm No. 2 Practice Problems Solution, November 10, 2004.

EECS 20. Midterm No. 2 Practice Problems Solution, November 10, 2004. EECS. Midterm No. Practice Problems Solution, November, 4.. When the inputs to a time-invariant system are: n, x (n) = δ(n ) x (n) = δ(n +), where δ is the Kronecker delta the corresponding outputs are

More information

1 Introduction & Objective

1 Introduction & Objective Signal Processing First Lab 13: Numerical Evaluation of Fourier Series Pre-Lab and Warm-Up: You should read at least the Pre-Lab and Warm-up sections of this lab assignment and go over all exercises in

More information

X. Chen More on Sampling

X. Chen More on Sampling X. Chen More on Sampling 9 More on Sampling 9.1 Notations denotes the sampling time in second. Ω s = 2π/ and Ω s /2 are, respectively, the sampling frequency and Nyquist frequency in rad/sec. Ω and ω denote,

More information

ECE 301 Fall 2010 Division 2 Homework 10 Solutions. { 1, if 2n t < 2n + 1, for any integer n, x(t) = 0, if 2n 1 t < 2n, for any integer n.

ECE 301 Fall 2010 Division 2 Homework 10 Solutions. { 1, if 2n t < 2n + 1, for any integer n, x(t) = 0, if 2n 1 t < 2n, for any integer n. ECE 3 Fall Division Homework Solutions Problem. Reconstruction of a continuous-time signal from its samples. Consider the following periodic signal, depicted below: {, if n t < n +, for any integer n,

More information

Section Kamen and Heck And Harman. Fourier Transform

Section Kamen and Heck And Harman. Fourier Transform s Section 3.4-3.7 Kamen and Heck And Harman 1 3.4 Definition (Equation 3.30) Exists if integral converges (Equation 3.31) Example 3.7 Constant Signal Does not have a Fourier transform in the ordinary sense.

More information

Chapter 6 THE SAMPLING PROCESS 6.1 Introduction 6.2 Fourier Transform Revisited

Chapter 6 THE SAMPLING PROCESS 6.1 Introduction 6.2 Fourier Transform Revisited Chapter 6 THE SAMPLING PROCESS 6.1 Introduction 6.2 Fourier Transform Revisited Copyright c 2005 Andreas Antoniou Victoria, BC, Canada Email: aantoniou@ieee.org July 14, 2018 Frame # 1 Slide # 1 A. Antoniou

More information

Fourier Analysis and Spectral Representation of Signals

Fourier Analysis and Spectral Representation of Signals MIT 6.02 DRAFT Lecture Notes Last update: April 11, 2012 Comments, questions or bug reports? Please contact verghese at mit.edu CHAPTER 13 Fourier Analysis and Spectral Representation of Signals We have

More information

Complex symmetry Signals and Systems Fall 2015

Complex symmetry Signals and Systems Fall 2015 18-90 Signals and Systems Fall 015 Complex symmetry 1. Complex symmetry This section deals with the complex symmetry property. As an example I will use the DTFT for a aperiodic discrete-time signal. The

More information

Fourier Transform for Continuous Functions

Fourier Transform for Continuous Functions Fourier Transform for Continuous Functions Central goal: representing a signal by a set of orthogonal bases that are corresponding to frequencies or spectrum. Fourier series allows to find the spectrum

More information

6.003: Signal Processing

6.003: Signal Processing 6.003: Signal Processing Discrete Fourier Transform Discrete Fourier Transform (DFT) Relations to Discrete-Time Fourier Transform (DTFT) Relations to Discrete-Time Fourier Series (DTFS) October 16, 2018

More information

EE16B - Spring 17 - Lecture 12A Notes 1

EE16B - Spring 17 - Lecture 12A Notes 1 EE6B - Spring 7 - Lecture 2A Notes Murat Arcak April 27 Licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4. International License. Sampling and Discrete Time Signals Discrete-Time

More information

Fourier Series Representation of

Fourier Series Representation of Fourier Series Representation of Periodic Signals Rui Wang, Assistant professor Dept. of Information and Communication Tongji University it Email: ruiwang@tongji.edu.cn Outline The response of LIT system

More information

Lecture 19: Discrete Fourier Series

Lecture 19: Discrete Fourier Series EE518 Digital Signal Processing University of Washington Autumn 2001 Dept. of Electrical Engineering Lecture 19: Discrete Fourier Series Dec 5, 2001 Prof: J. Bilmes TA: Mingzhou

More information

Homework 5 EE235, Summer 2013 Solution

Homework 5 EE235, Summer 2013 Solution Homework 5 EE235, Summer 23 Solution. Fourier Series. Determine w and the non-zero Fourier series coefficients for the following functions: (a f(t 2 cos(3πt + sin(πt + π 3 w π f(t e j3πt + e j3πt + j2

More information

V. IIR Digital Filters

V. IIR Digital Filters Digital Signal Processing 5 March 5, V. IIR Digital Filters (Deleted in 7 Syllabus). (dded in 7 Syllabus). 7 Syllabus: nalog filter approximations Butterworth and Chebyshev, Design of IIR digital filters

More information

Fourier Series and Fourier Transforms

Fourier Series and Fourier Transforms Fourier Series and Fourier Transforms EECS2 (6.082), MIT Fall 2006 Lectures 2 and 3 Fourier Series From your differential equations course, 18.03, you know Fourier s expression representing a T -periodic

More information

Overview of Bode Plots Transfer function review Piece-wise linear approximations First-order terms Second-order terms (complex poles & zeros)

Overview of Bode Plots Transfer function review Piece-wise linear approximations First-order terms Second-order terms (complex poles & zeros) Overview of Bode Plots Transfer function review Piece-wise linear approximations First-order terms Second-order terms (complex poles & zeros) J. McNames Portland State University ECE 222 Bode Plots Ver.

More information

Chap 2. Discrete-Time Signals and Systems

Chap 2. Discrete-Time Signals and Systems Digital Signal Processing Chap 2. Discrete-Time Signals and Systems Chang-Su Kim Discrete-Time Signals CT Signal DT Signal Representation 0 4 1 1 1 2 3 Functional representation 1, n 1,3 x[ n] 4, n 2 0,

More information

Ch 4: The Continuous-Time Fourier Transform

Ch 4: The Continuous-Time Fourier Transform Ch 4: The Continuous-Time Fourier Transform Fourier Transform of x(t) Inverse Fourier Transform jt X ( j) x ( t ) e dt jt x ( t ) X ( j) e d 2 Ghulam Muhammad, King Saud University Continuous-time aperiodic

More information

The Discrete-time Fourier Transform

The Discrete-time Fourier Transform The Discrete-time Fourier Transform Rui Wang, Assistant professor Dept. of Information and Communication Tongji University it Email: ruiwang@tongji.edu.cn Outline Representation of Aperiodic signals: The

More information

The different frequency components in a sound signal are processed first by the sensory system in the ear then some specialized cortical areas in the

The different frequency components in a sound signal are processed first by the sensory system in the ear then some specialized cortical areas in the Signals Represented in Terms of Magnitude Phase The physical interpretation of the Fourier transform of a time signal is its decomposition into a linear combination of frequency components with different

More information

4 The Continuous Time Fourier Transform

4 The Continuous Time Fourier Transform 96 4 The Continuous Time ourier Transform ourier (or frequency domain) analysis turns out to be a tool of even greater usefulness Extension of ourier series representation to aperiodic signals oundation

More information

Problem Value

Problem Value GEORGIA INSTITUTE OF TECHNOLOGY SCHOOL of ELECTRICAL & COMPUTER ENGINEERING FINAL EXAM DATE: 30-Apr-04 COURSE: ECE-2025 NAME: GT #: LAST, FIRST Recitation Section: Circle the date & time when your Recitation

More information

Chapter 8 The Discrete Fourier Transform

Chapter 8 The Discrete Fourier Transform Chapter 8 The Discrete Fourier Transform Introduction Representation of periodic sequences: the discrete Fourier series Properties of the DFS The Fourier transform of periodic signals Sampling the Fourier

More information

A system that is both linear and time-invariant is called linear time-invariant (LTI).

A system that is both linear and time-invariant is called linear time-invariant (LTI). The Cooper Union Department of Electrical Engineering ECE111 Signal Processing & Systems Analysis Lecture Notes: Time, Frequency & Transform Domains February 28, 2012 Signals & Systems Signals are mapped

More information

ECE 301 Division 1, Fall 2008 Instructor: Mimi Boutin Final Examination Instructions:

ECE 301 Division 1, Fall 2008 Instructor: Mimi Boutin Final Examination Instructions: ECE 30 Division, all 2008 Instructor: Mimi Boutin inal Examination Instructions:. Wait for the BEGIN signal before opening this booklet. In the meantime, read the instructions below and fill out the requested

More information

SIGNALS AND SYSTEMS: PAPER 3C1 HANDOUT 6. Dr Anil Kokaram Electronic and Electrical Engineering Dept.

SIGNALS AND SYSTEMS: PAPER 3C1 HANDOUT 6. Dr Anil Kokaram Electronic and Electrical Engineering Dept. SIGNALS AND SYSTEMS: PAPER 3C HANDOUT 6. Dr Anil Kokaram Electronic and Electrical Engineering Dept. anil.kokaram@tcd.ie www.mee.tcd.ie/ sigmedia FOURIER ANALYSIS Have seen how the behaviour of systems

More information

CS-9645 Introduction to Computer Vision Techniques Winter 2018

CS-9645 Introduction to Computer Vision Techniques Winter 2018 Table of Contents Spectral Analysis...1 Special Functions... 1 Properties of Dirac-delta Functions...1 Derivatives of the Dirac-delta Function... 2 General Dirac-delta Functions...2 Harmonic Analysis...

More information

LAB 6: FIR Filter Design Summer 2011

LAB 6: FIR Filter Design Summer 2011 University of Illinois at Urbana-Champaign Department of Electrical and Computer Engineering ECE 311: Digital Signal Processing Lab Chandra Radhakrishnan Peter Kairouz LAB 6: FIR Filter Design Summer 011

More information

Signals and Systems I Have Known and Loved. (Lecture notes for CSE 3451) Andrew W. Eckford

Signals and Systems I Have Known and Loved. (Lecture notes for CSE 3451) Andrew W. Eckford Signals and Systems I Have Known and Loved (Lecture notes for CSE 3451) Andrew W. Eckford Department of Electrical Engineering and Computer Science York University, Toronto, Ontario, Canada Version: December

More information

6.003: Signal Processing

6.003: Signal Processing 6.003: Sigal Processig Discrete-Time Fourier Series orthogoality of harmoically related DT siusoids DT Fourier series relatios differeces betwee CT ad DT Fourier series properties of DT Fourier series

More information

Section 3 Discrete-Time Signals EO 2402 Summer /05/2013 EO2402.SuFY13/MPF Section 3 1

Section 3 Discrete-Time Signals EO 2402 Summer /05/2013 EO2402.SuFY13/MPF Section 3 1 Section 3 Discrete-Time Signals EO 2402 Summer 2013 07/05/2013 EO2402.SuFY13/MPF Section 3 1 [p. 3] Discrete-Time Signal Description Sampling, sampling theorem Discrete sinusoidal signal Discrete exponential

More information

Discrete Time Signals and Systems Time-frequency Analysis. Gloria Menegaz

Discrete Time Signals and Systems Time-frequency Analysis. Gloria Menegaz Discrete Time Signals and Systems Time-frequency Analysis Gloria Menegaz Time-frequency Analysis Fourier transform (1D and 2D) Reference textbook: Discrete time signal processing, A.W. Oppenheim and R.W.

More information

EEO 401 Digital Signal Processing Prof. Mark Fowler

EEO 401 Digital Signal Processing Prof. Mark Fowler EEO 401 Digital Signal Processing Pro. Mark Fowler Note Set #10 Fourier Analysis or DT Signals eading Assignment: Sect. 4.2 & 4.4 o Proakis & Manolakis Much o Ch. 4 should be review so you are expected

More information

Fourier Series and Fourier Transforms

Fourier Series and Fourier Transforms Fourier Series and Fourier Transforms Houshou Chen Dept. of Electrical Engineering, National Chung Hsing University E-mail: houshou@ee.nchu.edu.tw H.S. Chen Fourier Series and Fourier Transforms 1 Why

More information

Chapter 4. Fourier Analysis for Con5nuous-Time Signals and Systems Chapter Objec5ves

Chapter 4. Fourier Analysis for Con5nuous-Time Signals and Systems Chapter Objec5ves Chapter 4. Fourier Analysis for Con5nuous-Time Signals and Systems Chapter Objec5ves 1. Learn techniques for represen3ng con$nuous-$me periodic signals using orthogonal sets of periodic basis func3ons.

More information

Lecture 27 Frequency Response 2

Lecture 27 Frequency Response 2 Lecture 27 Frequency Response 2 Fundamentals of Digital Signal Processing Spring, 2012 Wei-Ta Chu 2012/6/12 1 Application of Ideal Filters Suppose we can generate a square wave with a fundamental period

More information

LECTURE 12 Sections Introduction to the Fourier series of periodic signals

LECTURE 12 Sections Introduction to the Fourier series of periodic signals Signals and Systems I Wednesday, February 11, 29 LECURE 12 Sections 3.1-3.3 Introduction to the Fourier series of periodic signals Chapter 3: Fourier Series of periodic signals 3. Introduction 3.1 Historical

More information

Introduction to Orthogonal Transforms. with Applications in Data Processing and Analysis

Introduction to Orthogonal Transforms. with Applications in Data Processing and Analysis i Introduction to Orthogonal ransforms with Applications in Data Processing and Analysis ii Introduction to Orthogonal ransforms with Applications in Data Processing and Analysis June 8, 2009 i ii Contents

More information

The Continuous-time Fourier

The Continuous-time Fourier The Continuous-time Fourier Transform Rui Wang, Assistant professor Dept. of Information and Communication Tongji University it Email: ruiwang@tongji.edu.cn Outline Representation of Aperiodic signals:

More information

Homework 1 Solutions

Homework 1 Solutions 18-9 Signals and Systems Profs. Byron Yu and Pulkit Grover Fall 18 Homework 1 Solutions Part One 1. (8 points) Consider the DT signal given by the algorithm: x[] = 1 x[1] = x[n] = x[n 1] x[n ] (a) Plot

More information

Homework Set #7 - Solutions

Homework Set #7 - Solutions EE 5 - Applications of Convex Optimization in Signal Processing and Communications Dr Andre kacenko, JPL hird erm - First note that we can express f(t) as Homework Set #7 - Solutions f(t) = c(t) x, where

More information

sinc function T=1 sec T=2 sec angle(f(w)) angle(f(w))

sinc function T=1 sec T=2 sec angle(f(w)) angle(f(w)) T=1 sec sinc function 3 angle(f(w)) T=2 sec angle(f(w)) 1 A quick script to plot mag & phase in MATLAB w=0:0.2:50; Real exponential func b=5; Fourier transform (filter) F=1.0./(b+j*w); subplot(211), plot(w,

More information

Escola Federal de Engenharia de Itajubá

Escola Federal de Engenharia de Itajubá Escola Federal de Engenharia de Itajubá Departamento de Engenharia Mecânica Pós-Graduação em Engenharia Mecânica MPF04 ANÁLISE DE SINAIS E AQUISIÇÃO DE DADOS SINAIS E SISTEMAS Trabalho 01 (MATLAB) Prof.

More information