diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /1514/CH14/EX14.5/14_5.sce | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
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)
|