summaryrefslogtreecommitdiff
path: root/3812/CH5/EX5.8/5_8.sce
diff options
context:
space:
mode:
Diffstat (limited to '3812/CH5/EX5.8/5_8.sce')
-rw-r--r--3812/CH5/EX5.8/5_8.sce26
1 files changed, 26 insertions, 0 deletions
diff --git a/3812/CH5/EX5.8/5_8.sce b/3812/CH5/EX5.8/5_8.sce
new file mode 100644
index 000000000..e62bcf5d0
--- /dev/null
+++ b/3812/CH5/EX5.8/5_8.sce
@@ -0,0 +1,26 @@
+//Example 5_8
+//find the fourier transform x(t)=exp(-%pi*(t^2))
+clear;
+clc;
+B=%pi;
+Dt=0.005;
+t=-4.5:Dt:4.5;
+xt=exp(-%pi*(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=real(XW);
+W=[-mtlb_fliplr(W),W(2:1001)];
+XW=[mtlb_fliplr(XW),XW(2:1001)];
+subplot(2,1,1);
+plot(t,xt);
+xlabel('t i n s e c');
+ylabel('x(t)')
+title('Continuous Time Signal')
+subplot(2,1,2);
+plot(W,XW);
+xlabel('Fr equency in Radians/Seconds W');
+ylabel('X(jW)')
+title('Continuous-time Fourier Transform')