summaryrefslogtreecommitdiff
path: root/2294/CH7/EX7.1.2/EX7_1_2.sce
blob: 2badede11fc2283617a8fe3b4f3454de83bf7b90 (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
//Example 7_1_2
//Find the laplace transform and Roc of the following signal.
clc;
t=-10:.01:10;
a=4;
for i=1:length(t)
    if t(i)>0 then
        x(i)=0;
    else
        x(i)=-exp(-a*t(i));
    end
end
s=%s;
numfs=1;
denfs=s+.04;
fs=syslin('c',numfs/denfs);
fs1=csim('impulse',t,fs);
f=scf(0);
subplot(2,1,1);
plot2d(t,x,2);
xtitle('Phrasing');
xgrid;
subplot(2,1,2);
plot2d(t,fs1,1);
xtitle('Solution');
xgrid;
disp(fs);
disp('As  real(s)<-a,so the integral converges for real(s)<-a');
xs2jpg(0, 'EX7_1_2-plot-a.jpg');