summaryrefslogtreecommitdiff
path: root/1223/CH12/EX12.1/Ex12_1.sce
diff options
context:
space:
mode:
Diffstat (limited to '1223/CH12/EX12.1/Ex12_1.sce')
-rwxr-xr-x1223/CH12/EX12.1/Ex12_1.sce11
1 files changed, 11 insertions, 0 deletions
diff --git a/1223/CH12/EX12.1/Ex12_1.sce b/1223/CH12/EX12.1/Ex12_1.sce
new file mode 100755
index 000000000..457d63894
--- /dev/null
+++ b/1223/CH12/EX12.1/Ex12_1.sce
@@ -0,0 +1,11 @@
+clear;
+clc;
+//Example 12.1
+A=10^5;//open loop gain
+Af=50;//closed loop gain
+b=(A/Af-1)/A;
+printf('\nfeedback transfer function=%f\n',b)
+A=-10^5;
+Af=-50;
+b=(A/Af-1)/A;
+printf('\nfeedback transfer function=%f\n',b)