summaryrefslogtreecommitdiff
path: root/135/CH11/EX11.1/EX1.sce
diff options
context:
space:
mode:
Diffstat (limited to '135/CH11/EX11.1/EX1.sce')
-rwxr-xr-x135/CH11/EX11.1/EX1.sce14
1 files changed, 14 insertions, 0 deletions
diff --git a/135/CH11/EX11.1/EX1.sce b/135/CH11/EX11.1/EX1.sce
new file mode 100755
index 000000000..8c8d8ab6e
--- /dev/null
+++ b/135/CH11/EX11.1/EX1.sce
@@ -0,0 +1,14 @@
+// Example 11.1: Open-loop gain, Return ratio, Reverse transmission β of feedback circuit
+clc, clear
+// Let A be open-loop gain and B be return ratio
+// For A, B 10% higher, -1.1A + 55.11B = -50.1
+// For A, B 10% lower, -0.9A + 44.91B = -49.9
+// Solving the two equations
+a=[-1.1 55.11; -0.9 44.91];
+b=[-50.1; -49.9];
+c=inv(a)*b;
+A=c(1,1);
+B=c(2,1);
+disp(A,"Open-loop gain =");
+disp(B,"Return ratio =");
+disp(B/A,"Reverse transmission β of the feedback circuit ="); \ No newline at end of file