summaryrefslogtreecommitdiff
path: root/3812/CH5/EX5.17/5_17.sce
diff options
context:
space:
mode:
Diffstat (limited to '3812/CH5/EX5.17/5_17.sce')
-rw-r--r--3812/CH5/EX5.17/5_17.sce37
1 files changed, 37 insertions, 0 deletions
diff --git a/3812/CH5/EX5.17/5_17.sce b/3812/CH5/EX5.17/5_17.sce
new file mode 100644
index 000000000..62e827d68
--- /dev/null
+++ b/3812/CH5/EX5.17/5_17.sce
@@ -0,0 +1,37 @@
+//Example 5_17
+//Fourier Transform of Continuous Time Signal x(t)=cos(wc*t)*u(t)
+clear;
+clc;
+wc=1;
+Dt=0.005;
+t=0: Dt :10;
+xt=(exp(wc*t)+exp(-wc*t))/2;
+Wmax=2*%pi*1;
+K=4;
+k=0:(K/1000):K;
+W=k*Wmax/K;
+XW=xt*exp(-sqrt(-1)*t'*W)*Dt;
+XW_Mag=abs(XW);
+W=[-mtlb_fliplr(W),W(2:1001)];
+XW_Mag=[mtlb_fliplr(XW_Mag),XW_Mag(2:1001)];
+[XW_Phase,db]=phasemag(XW);
+XW_Phase=[-mtlb_fliplr(XW_Phase),XW_Phase(2:1001)];
+//Plotting Continuous Time Signal
+figure(1)
+plot(t,xt);
+xlabel('t in sec.');
+ylabel('x(t)')
+title('Continuous Time Signal')
+figure(2)
+//Plotting Magnitude Response of CTS
+subplot(2,1,1);
+plot(W,XW_Mag);
+xlabel('Frequency in Radians/Seconds>W');
+ylabel('abs(X(jW))')
+title('Magnitude Response (CTFT)')
+//Plotting Phase Reponse of CTS
+subplot(2,1,2);
+plot(W,XW_Phase*%pi/180);
+xlabel('Frequency in Radians/Seconds>W');
+ylabel('<X(jW)')
+title('Phase Response (CTFT) in Radians')