diff options
Diffstat (limited to '2702/CH5/EX5.5')
-rw-r--r-- | 2702/CH5/EX5.5/Ex_5_5.sce | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/2702/CH5/EX5.5/Ex_5_5.sce b/2702/CH5/EX5.5/Ex_5_5.sce new file mode 100644 index 000000000..3db58b77f --- /dev/null +++ b/2702/CH5/EX5.5/Ex_5_5.sce @@ -0,0 +1,10 @@ +// Exa 5.5
+clc;
+clear;
+close;
+// Given data
+Av= 140;
+Avf= 17.5;
+// Formula Avf= Av/(1+Av*Bita)
+Bita= 1/Avf-1/Av;
+disp(Bita,"Fraction of the output is ")
|