blob: 75a7b437879e898a4e051840955b4ac0f23e5f88 (
plain)
1
2
3
4
5
6
7
8
|
Syms t,s
disp('given i2(t)=5-3e^(-2t)')
f=laplace('5-3*%e^(-2*t)',t,s)
disp(f,"laplace transformed solution is")
x=s*f
disp('by final value theorem')
y=limit(x,s,0)//final value theorem
disp(y,"i2(inf)=")
|