diff options
Diffstat (limited to '1514/CH14/EX14.5/14_5.sce')
-rwxr-xr-x | 1514/CH14/EX14.5/14_5.sce | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/1514/CH14/EX14.5/14_5.sce b/1514/CH14/EX14.5/14_5.sce new file mode 100755 index 000000000..c4a9fd33c --- /dev/null +++ b/1514/CH14/EX14.5/14_5.sce @@ -0,0 +1,15 @@ +//chapter 14
+//example 14.5
+//page 442
+clear all;
+clc ;
+//given
+Av=100;
+Av=20*log10(Av);//voltage gain in db
+printf("\nvoltage gain=%d db",ceil(Av));
+//f2 occurs at(upper cutoff frequency)
+M=ceil(Av+7.7);
+f2=5;//from intersection of frequency response and M=48db of 741
+printf("\nupper cutoff frequency for 741=%d khz",f2)
+f2=200;//from intersection of frequency response and M=48db of 709
+printf("\nupper cutoff frequency for 709=%d khz",f2)
|