summaryrefslogtreecommitdiff
path: root/2492/CH6/EX6.1/ex6_1.sce
diff options
context:
space:
mode:
Diffstat (limited to '2492/CH6/EX6.1/ex6_1.sce')
-rwxr-xr-x2492/CH6/EX6.1/ex6_1.sce16
1 files changed, 16 insertions, 0 deletions
diff --git a/2492/CH6/EX6.1/ex6_1.sce b/2492/CH6/EX6.1/ex6_1.sce
new file mode 100755
index 000000000..d1f3c73d5
--- /dev/null
+++ b/2492/CH6/EX6.1/ex6_1.sce
@@ -0,0 +1,16 @@
+// Exa 6.1
+format('v',6)
+clc;
+clear;
+close;
+// Given data
+BWf = 5;// in MHz
+BWf= BWf * 10^6;// in Hz
+Av = 100;
+BW = 500;// in kHz
+BW = BW * 10^3;// in Hz
+// BWf = (1+(B*Av))*BW;
+B = ((BWf/BW)-1)/Av;
+disp(B,"The amount of negative feed back is");
+Avf = Av/(1+(Av*B));
+disp(Avf,"The new gain after negative feed back is");