SLIDE 5 Example 7: Transform of a Pulse Does the Fourier transform of pT (t) defined below exist? Find the Fourier transform (use a limit if necessary). pT (t) =
|t| < T Otherwise
Portland State University ECE 223 CT Fourier Transform
19
Example 6: Fourier Transform
−20 −15 −10 −5 5 10 15 20 0.5 1 |X(jω)| e− 1.0t u(t) −20 −15 −10 −5 5 10 15 20 −100 −50 50 100 ∠ X(jω) Frequency (rad/s)
Portland State University ECE 223 CT Fourier Transform
17
Example 7: Workspace
Portland State University ECE 223 CT Fourier Transform
20
Example 6: MATLAB Code
function [] = DecayingExponential(); a = 1; w = -20:0.1:20; X = 1./(a + j*w); FigureSet(1,’LTX’); subplot(2,1,1); h = plot(w,abs(X)); set(h,’LineWidth’,1.5); ylabel(’|X(j\omega)|’); title(sprintf(’e^{-%5.1ft} u(t)’,a)); ylim([0 1.1]); box off; AxisLines; subplot(2,1,2); h = plot(w,angle(X)*180/pi); set(h,’LineWidth’,1.5); ylabel(’\angle X(j\omega)’); xlabel(’Frequency (rad/s)’); box off; AxisLines; AxisSet(8); print -depsc DecayingExponential;
Portland State University ECE 223 CT Fourier Transform
18