summaryrefslogtreecommitdiff
path: root/1574/CH1/EX1.14/Signals_Ex_1_14.sce
blob: a05c0c207faca76a3ec15218779ada22b22a2414 (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
28
29
30
31
32
33
34
35
36
37
//Chapter 1
//Ex1.14, page no 44
// CTS Signal
// Continuous Time Fourier Transforms of
// Sinusoidal waveforms(a)sin(Wot)(b)cos(Wot)
clear ;
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 ];
ak1 = (2* %pi*Wo*T1/%pi);
XW1 =[ ak1 ,0, ak1 ];
//displaying the given function
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 ) ')
//displaying the fourier Transform of the given function
figure
a =gca();
a.y_location="origin";
a.x_location="origin";
plot2d3('gnn',W,XW1,5);
poly1 =a.children(1).children(1) ;
poly1.thickness = 3;
xlabel('W' );
title( 'CTFT of cos (Wot)')