summaryrefslogtreecommitdiff
path: root/773/CH6/EX6.15/6_15.sci
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /773/CH6/EX6.15/6_15.sci
downloadScilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip
initial commit / add all books
Diffstat (limited to '773/CH6/EX6.15/6_15.sci')
-rwxr-xr-x773/CH6/EX6.15/6_15.sci21
1 files changed, 21 insertions, 0 deletions
diff --git a/773/CH6/EX6.15/6_15.sci b/773/CH6/EX6.15/6_15.sci
new file mode 100755
index 000000000..9aa957ac1
--- /dev/null
+++ b/773/CH6/EX6.15/6_15.sci
@@ -0,0 +1,21 @@
+//syslin//
+exec series.sce;
+exec parallel.sce;
+syms G1 G2 G3 G4 H1 H2 H3;
+//shift the take-off point to the right of the block H1
+//shift the other take-off point to the right of the block H1 &H2
+a=series(H1,H2);
+b=1/a;
+c=1/H1;
+d=G3/.a;
+//move the summer to the left of the block G2
+e=G4/G2;
+f=series(d,G2);
+//exchange the summer
+g=f/.H1;
+h=parallel(G1,e);
+i=series(h,g);
+j=series(a,H3);
+y=i/.j;
+y=simple(y);
+disp(y,"C(s)/R(s)=")