summaryrefslogtreecommitdiff
path: root/215/CH14/EX14.3/ex14_3.sce
blob: d5e6adb23272e229008bebda42b566149636c2a0 (plain)
1
2
3
4
5
6
7
8
9
10
11
clc
//Example 14.3
//Install Symbolic toolbox
//Find the Inverse Laplace transform
syms s
a=7/s
b=31/(s+17)
x=ilaplace(a)
y=ilaplace(b)
g=x-y
disp(g,'g(t)=')