blob: a3e04d87b1c51a7fb51d51219fa0fc51986140c0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
clc
//Example 15.9
//Install Symbolic toolbox
//Find the inverse Laplace transform
syms s
s=%s
//Let a=1 and b=3
a=1;b=3;
V=1/((s+a)*(s+b))
Vp=pfss (V)
Vp1=ilaplace(Vp(1))
Vp2=ilaplace(Vp(2))
v=Vp1+Vp2
disp(v,'v(t)=')
|