summaryrefslogtreecommitdiff
path: root/2294/CH7/EX7.8/EX7_8.sce
blob: c1b5aac57fd61d1e7ae4051b2ee5adb6eb78ab02 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//Example7.8
//Find the laplace transform .
clc;
s=%s;t=-10:10;
numfs=2*s;
denfs=s^2-8;
fs=syslin('c',numfs/denfs);
fs1=csim('impulse',t,fs);
f=scf(0);
plot2d(t,fs1,1);
xtitle('Solution');
xgrid;
xs2jpg(0, 'problem110-plot-a.jpg')
disp(fs,'fs=');