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 /61/CH10/EX10.4 | |
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 '61/CH10/EX10.4')
-rwxr-xr-x | 61/CH10/EX10.4/ex10_4.sce | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/61/CH10/EX10.4/ex10_4.sce b/61/CH10/EX10.4/ex10_4.sce new file mode 100755 index 000000000..d2cb49fb9 --- /dev/null +++ b/61/CH10/EX10.4/ex10_4.sce @@ -0,0 +1,11 @@ +//ex10.4
+A_v_mid=100;
+//At 1Hz frequency,voltage gain is 3 dB less than at midrange. At -3dB, the voltage is reduced by a factor of 0.707
+A_v=0.707*A_v_mid;
+disp(A_v,'actual voltage gain at 1Hz frequency')
+//At 100Hz frequency,voltage gain is 20 dB less than at critical frequency (f_c ). At -20dB, the voltage is reduced by a factor of 0.1
+A_v=0.1*A_v_mid;
+disp(A_v,'actual voltage gain at 100Hz frequency')
+//At 10Hz frequency,voltage gain is 40 dB less than at critical frequency (f_c). At -40dB, the voltage is reduced by a factor of 0.01
+A_v=0.01*A_v_mid;
+disp(A_v,'actual voltage gain at 10Hz frequency')
\ No newline at end of file |