diff options
Diffstat (limited to '2702/CH5/EX5.6/Ex_5_6.sce')
-rw-r--r-- | 2702/CH5/EX5.6/Ex_5_6.sce | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/2702/CH5/EX5.6/Ex_5_6.sce b/2702/CH5/EX5.6/Ex_5_6.sce new file mode 100644 index 000000000..cacbfffd3 --- /dev/null +++ b/2702/CH5/EX5.6/Ex_5_6.sce @@ -0,0 +1,16 @@ +// Exa 5.6
+clc;
+clear;
+close;
+// Given data
+Av= 100;
+Avf= 50;
+// Formula Avf= Av/(1+Av*Bita)
+Bita= 1/Avf-1/Av;
+disp(Bita,"The vlaue of bita is ")
+
+// Part(ii)
+Avf= 75;
+// Formula Avf= Av/(1+Av*Bita)
+Av= Avf/(1-Bita*Avf)
+disp(Av,"Value of amplifier gain is : ")
|