EE 341 Fall 2005 EE 341 - Homework 6 Due October …rison/ee341_fall05/hw/hw06_soln.pdfEE 341 Fall...

7
EE 341 Fall 2005 EE 341 - Homework 6 Due October 7, 2005 For problems which require MATLAB, please include a MATLAB m-file which shows how you made your plots. 1. Find the Fourier transforms of the following signals: (a) x(t)= e -2t cos(2πt)u(t) (b) x(t) = cos 2 (2πt) sin(2πt) (c) x(t) = sinc(t) * sinc(2t) (d) x(t) = (1 - e -t )u(t) 2. Sketch the spectra (|X (ω)| and X (ω)) for the following signals: (a) x(t) = sinc(t - 2) (b) x(t) = sinc 2 (t) cos(8πt) (c) x(t) = cos(πt - 0.25π) (d) x(t) = cos(πt)p 1 (t) (e) x(t) = cos(πt)p 100 (t) 3. Find the Fourier transform of the following signals and sketch their spectra (|X (ω)| and X (ω)): (a) x(t)= δ(t + 1) + δ(t - 1) (b) x(t)= δ(t + 1) - δ(t - 1) 4. Sketch the spectra (|Y (ω)| and Y (ω)) where y(t)= m(t)x(t) (the signal x(t) which has been modulated by the signal m(t)): (a) X (ω)= p 1 (ω) m(t) = cos(πt) (b) X (ω)= p 4 (ω) m(t) = cos(πt) (c) X (ω)= p 1 (ω) m(t) = cos(10πt) 5. Problem 4.24. 1

Transcript of EE 341 Fall 2005 EE 341 - Homework 6 Due October …rison/ee341_fall05/hw/hw06_soln.pdfEE 341 Fall...

Page 1: EE 341 Fall 2005 EE 341 - Homework 6 Due October …rison/ee341_fall05/hw/hw06_soln.pdfEE 341 Fall 2005 EE 341 - Homework 6 Due October 7, 2005 For problems which require MATLAB, please

EE 341 Fall 2005

EE 341 - Homework 6

Due October 7, 2005

For problems which require MATLAB, please include a MATLAB m-file which shows how youmade your plots.

1. Find the Fourier transforms of the following signals:

(a) x(t) = e−2t cos(2πt)u(t)

(b) x(t) = cos2(2πt) sin(2πt)

(c) x(t) = sinc(t) ∗ sinc(2t)

(d) x(t) = (1 − e−t)u(t)

2. Sketch the spectra (|X(ω)| and 6 X(ω)) for the following signals:

(a) x(t) = sinc(t − 2)

(b) x(t) = sinc2(t) cos(8πt)

(c) x(t) = cos(πt − 0.25π)

(d) x(t) = cos(πt)p1(t)

(e) x(t) = cos(πt)p100(t)

3. Find the Fourier transform of the following signals and sketch their spectra (|X(ω)| and6 X(ω)):

(a) x(t) = δ(t + 1) + δ(t − 1)

(b) x(t) = δ(t + 1) − δ(t − 1)

4. Sketch the spectra (|Y (ω)| and 6 Y (ω)) where y(t) = m(t)x(t) (the signal x(t) which has beenmodulated by the signal m(t)):

(a) X(ω) = p1(ω) m(t) = cos(πt)

(b) X(ω) = p4(ω) m(t) = cos(πt)

(c) X(ω) = p1(ω) m(t) = cos(10πt)

5. Problem 4.24.

1

Page 2: EE 341 Fall 2005 EE 341 - Homework 6 Due October …rison/ee341_fall05/hw/hw06_soln.pdfEE 341 Fall 2005 EE 341 - Homework 6 Due October 7, 2005 For problems which require MATLAB, please
Page 3: EE 341 Fall 2005 EE 341 - Homework 6 Due October …rison/ee341_fall05/hw/hw06_soln.pdfEE 341 Fall 2005 EE 341 - Homework 6 Due October 7, 2005 For problems which require MATLAB, please
Page 4: EE 341 Fall 2005 EE 341 - Homework 6 Due October …rison/ee341_fall05/hw/hw06_soln.pdfEE 341 Fall 2005 EE 341 - Homework 6 Due October 7, 2005 For problems which require MATLAB, please
Page 5: EE 341 Fall 2005 EE 341 - Homework 6 Due October …rison/ee341_fall05/hw/hw06_soln.pdfEE 341 Fall 2005 EE 341 - Homework 6 Due October 7, 2005 For problems which require MATLAB, please
Page 6: EE 341 Fall 2005 EE 341 - Homework 6 Due October …rison/ee341_fall05/hw/hw06_soln.pdfEE 341 Fall 2005 EE 341 - Homework 6 Due October 7, 2005 For problems which require MATLAB, please

% EE 341 HW #6

% Problem 3figure(1)clf

% (d)w = -30:0.001:30;X = sinc((w+pi)/(2*pi)) + sinc((w-pi)/(2*pi));subplot(211)plot(w,X);gridylabel(’X_d(\omega)’)title(’HW #6 Problem 4 (d) (e)’)

% (e)w = -5:0.001:5;X = sinc(50*(w+pi)/pi) + sinc(50*(w-pi)/pi);subplot(212)plot(w,X);gridylabel(’X_e(\omega)’)xlabel(’\omega’)

print -dpsc2 hw6_p4.ps

Page 7: EE 341 Fall 2005 EE 341 - Homework 6 Due October …rison/ee341_fall05/hw/hw06_soln.pdfEE 341 Fall 2005 EE 341 - Homework 6 Due October 7, 2005 For problems which require MATLAB, please

−30 −20 −10 0 10 20 30−0.5

0

0.5

1

1.5

Xd(ω

)

HW #6 Problem 4 (d) (e)

−5 −4 −3 −2 −1 0 1 2 3 4 5−0.4

−0.2

0

0.2

0.4

0.6

0.8

1

Xe(ω

)

ω