summaryrefslogtreecommitdiff
path: root/22/CH7/EX7.4/ch7ex4.sce
blob: 94bab37e4138731b5a5c3453ff921d162c33e6f1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
//Example 4.5
// Inverse Continuous Time Fourier Transform
// impulse funtion
clear;
clc;
close;
// CTFT
A =1;    //Amplitude
Dw = 0.005;
W1 = 4;  //Time in seconds
w = -W1/2:Dw:W1/2;
  for i=1:length(w)
      XW(1)=1;
      end
XW = XW';

//Inverse Continuous-time Fourier Transform
t = -0.01:1/length(w):0.01;
xt =(1/(2*%pi))*XW *exp(sqrt(-1)*w'*t)*Dw;
xt = real(xt);
figure
a = gca();
a.y_location ="origin";
a.x_location ="origin";
plot(t,xt);
xlabel('                                     t time in Seconds');
title('Inverse Continuous Time Fourier Transform x(t)')