summaryrefslogtreecommitdiff
path: root/22/CH4/EX4.30/ch4ex30.sce
blob: 3ec2abb49c613039cb5c085e9dc4a9848fee4adb (plain)
1
2
3
4
5
6
7
8
9
10
11
//signals and systems
//Unilateral  Laplace Transform:Solving Differential Equation
//example 4.30
s= %s;
syms t;
[A] = pfss((-1)/((s-1)*(s+2)));
F1 = ilaplace(A(1),s,t)
F2 = ilaplace(A(2),s,t)
//F3 = ilaplace(A(3),s,t)
F = F1+F2
disp(F)