summaryrefslogtreecommitdiff
path: root/3812/CH5/EX5.9/5_9.sce
blob: e9d6dd50ec05c6d0235e30648905b127e6a6bfee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
//Example 5.9
//Continuous Time Fourier Transforms of cos(Wot)
clc;
close;
//CTFT
T1=2;
T=4*T1;
Wo=2*%pi/T;
W=[-Wo,0,Wo];
ak=(2*%pi*Wo*T1/%pi);
XW1=[-ak,0,ak];
figure
a = gca();
a.y_location="origin";
a.x_location="origin";
plot2d3('gnn',W,XW1,2);
poly1 = a.children(1).children(1);
poly1.thickness=3; 
xlabel('W');
title('CTFT of cos(Wot)')