summaryrefslogtreecommitdiff
path: root/257/CH7/EX7.14/example_7_14.sce
blob: 3a71f7bb82c47d4d579097072eb3c830557d61e3 (plain)
1
2
3
4
5
6
7
8
9
10
11
s=%s;
T=20/(s+10)

syms t s;
y=ilaplace(T,s,t);

T1=20/((s+10)*s)
c1=ilaplace(T1,s,t)

T2=20/((s+10)*s^2)
c2=ilaplace(T2,s,t)