summaryrefslogtreecommitdiff
path: root/2498/CH5/EX5.16
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /2498/CH5/EX5.16
downloadScilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip
initial commit / add all books
Diffstat (limited to '2498/CH5/EX5.16')
-rwxr-xr-x2498/CH5/EX5.16/ex5_16.sce14
1 files changed, 14 insertions, 0 deletions
diff --git a/2498/CH5/EX5.16/ex5_16.sce b/2498/CH5/EX5.16/ex5_16.sce
new file mode 100755
index 000000000..0c44be4d9
--- /dev/null
+++ b/2498/CH5/EX5.16/ex5_16.sce
@@ -0,0 +1,14 @@
+// Exa 5.16
+clc;
+clear;
+close;
+format('v',6)
+// Given data
+A = 60;// in dB
+A =10^(A/20);
+Beta = 0.005;
+dAbyA = -12/100;//gain reduction in %
+dAf_byAf = (1/(1+(A*Beta)))*dAbyA;// change in overall gain
+dAf_byAf = dAf_byAf * 100;// in %
+disp(dAf_byAf,"The change in overall gain in % is");
+disp("Thus, the overall gain will be reduced by 2%")