diff options
Diffstat (limited to '61/CH6/EX6.5')
-rwxr-xr-x | 61/CH6/EX6.5/ex6_5.sce | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/61/CH6/EX6.5/ex6_5.sce b/61/CH6/EX6.5/ex6_5.sce new file mode 100755 index 000000000..832290197 --- /dev/null +++ b/61/CH6/EX6.5/ex6_5.sce @@ -0,0 +1,8 @@ + //ex6.5
+r_e=6.58; //from ex6.3
+R_C=1*10^3;
+R_E=560;
+A_v=R_C/(R_E+r_e);
+disp(A_v,'gain without bypass capacitor')
+A_v=R_C/r_e;
+disp(A_v,'gain in the presence of bypass capacitor')
\ No newline at end of file |