diff options
Diffstat (limited to '2498/CH6/EX6.4/ex6_4.sce')
-rwxr-xr-x | 2498/CH6/EX6.4/ex6_4.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/2498/CH6/EX6.4/ex6_4.sce b/2498/CH6/EX6.4/ex6_4.sce new file mode 100755 index 000000000..b553fb763 --- /dev/null +++ b/2498/CH6/EX6.4/ex6_4.sce @@ -0,0 +1,14 @@ +// Exa 6.4
+clc;
+clear;
+close;
+format('v',6)
+// Given data
+R1 = 1;// in k ohm
+R_F = 4.7;// in k ohm
+//The closed loop voltage gain, Ao = Vo/Vin = -R_F/R1;
+Ao = -R_F/R1;
+disp(Ao,"The closed loop voltage gain is");
+// The input impedance
+Ri = R1;// in k ohm
+disp(Ri,"The input impedance in k ohm is");
|