diff options
Diffstat (limited to '29/CH3/EX3.2.2')
-rwxr-xr-x | 29/CH3/EX3.2.2/exa3_2_2.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/29/CH3/EX3.2.2/exa3_2_2.sce b/29/CH3/EX3.2.2/exa3_2_2.sce new file mode 100755 index 000000000..3b816f6db --- /dev/null +++ b/29/CH3/EX3.2.2/exa3_2_2.sce @@ -0,0 +1,14 @@ +//Caption:transfer_function
+// example 3.2.2
+//page 34
+// we have defined parallel and series function which we are going to use here
+//exec parallel.sce;
+//exec series.sce;
+syms G1 G2 G3 H1;
+// shifting take off point before block G1 to a position after block G1
+a=G1*H1;
+b=parallel(G1,G2);
+c=G3/.a
+y=series(b,c);
+y=simple (y);
+disp(y,"C(s)/R(s)=")
\ No newline at end of file |