diff options
Diffstat (limited to '257/CH5/EX5.9/example_5_9.sce')
-rw-r--r-- | 257/CH5/EX5.9/example_5_9.sce | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/257/CH5/EX5.9/example_5_9.sce b/257/CH5/EX5.9/example_5_9.sce new file mode 100644 index 000000000..07c6d9880 --- /dev/null +++ b/257/CH5/EX5.9/example_5_9.sce @@ -0,0 +1,11 @@ +syms H1 H2 H3 G1 G2 G3 G4
+
+//shifting summing points before G1 and take off points after G4
+
+a= G1*G2/(1+(G1*G2*H1))
+b= G3*G4/(1+(G3*G4*H2))
+c=a*b
+Y= c/(1+(c*(H3/(G1*G4))))
+
+disp(Y,"C/R = ")
+
|