From 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 Mon Sep 17 00:00:00 2001 From: prashantsinalkar Date: Tue, 10 Oct 2017 12:27:19 +0530 Subject: initial commit / add all books --- 2279/CH5/EX5.21/Ex5_21.sce | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 2279/CH5/EX5.21/Ex5_21.sce (limited to '2279/CH5/EX5.21') diff --git a/2279/CH5/EX5.21/Ex5_21.sce b/2279/CH5/EX5.21/Ex5_21.sce new file mode 100644 index 000000000..f50d54b18 --- /dev/null +++ b/2279/CH5/EX5.21/Ex5_21.sce @@ -0,0 +1,26 @@ +// Inverse Continuous Time Fourier Transform +// X(jW)= 2*pi, at W=Wo +clear; +clc; +close; +// CTFT +A =1; +Dw = 0.005; +W1 = 4; +Wo=2//Assume Wo=2 +w = -W1/2:Dw:W1/2; +for i = 1:length(w) + if w(i)==Wo then + XW(i) = 2*%pi; +else + XW(i)=0; +end +end +XW = XW'; +//Inverse Continuous-time Fourier Transform +t = -3*%pi:%pi/length(w):3*%pi; +xt =(1/(2*%pi))*XW *exp(sqrt(-1)*w'*t)*Dw; +xt = real(1+xt); +plot(t,xt); +xlabel(' t Sec'); +title('Time domain signal x(t)') -- cgit