summaryrefslogtreecommitdiff
path: root/2279/CH5/EX5.24/eg_5_24.sce
blob: cf324aad2ce43c4bc995a053ab86d28a92812ed9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Continuous Time Fourier Transforms of 
// Sinusoidal waveforms sin(Wot) 
clear
clc;
close;
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];
plot(W,-imag(XW),'.');
xlabel('                                                      W');
xtitle('CTFT of sin(Wot)','W','X(jW)')