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