summaryrefslogtreecommitdiff
path: root/3838/CH2/EX2.1.b/Ex2_1_b.sce
blob: 27f80ca78c237ad4c6c0c1d5fb332ba7b22bc412 (plain)
1
2
3
4
5
6
7
8
9
10
//example 2.1.b
//check the signal is periodic or not
clc ;
t =-15:0.01:15;
a=1;//assumed the value of a to be equal to 1
y =exp(a*t);
plot(t,y);
xtitle('plot of function exp(a*t)')
xlabel('time--->')
disp ( 'Plot  shows that given signal is not periodic' ) ;