From b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b Mon Sep 17 00:00:00 2001 From: priyanka Date: Wed, 24 Jun 2015 15:03:17 +0530 Subject: initial commit / add all books --- 29/CH1/EX1.6.7/exa1_6_7.sce | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100755 29/CH1/EX1.6.7/exa1_6_7.sce (limited to '29/CH1/EX1.6.7/exa1_6_7.sce') diff --git a/29/CH1/EX1.6.7/exa1_6_7.sce b/29/CH1/EX1.6.7/exa1_6_7.sce new file mode 100755 index 000000000..ca23975e1 --- /dev/null +++ b/29/CH1/EX1.6.7/exa1_6_7.sce @@ -0,0 +1,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 \ No newline at end of file -- cgit