blob: ca23975e1d125d104a0b64eae4e5b8d920896914 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
//Caption:final_value
// example 1.6.7
//page 12
//X(s)=100/(s*(s^2+2*s+50))
p=poly([100],'s','coeff');
q=poly([0 50 2 1],'s','coeff');
F=p/q;
syms s
x=s*F;
y=limit(x,s,0);//final value theorem
y=dbl(y)
disp(y,"x(inf)=")//result
|