diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /29/CH1/EX1.6.7/exa1_6_7.sce | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '29/CH1/EX1.6.7/exa1_6_7.sce')
-rwxr-xr-x | 29/CH1/EX1.6.7/exa1_6_7.sce | 12 |
1 files changed, 12 insertions, 0 deletions
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 |