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 /773/CH6/EX6.15/6_15.sci | |
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 '773/CH6/EX6.15/6_15.sci')
-rwxr-xr-x | 773/CH6/EX6.15/6_15.sci | 21 |
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)=")
|