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 /2528/CH5/EX5.12 | |
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 '2528/CH5/EX5.12')
-rwxr-xr-x | 2528/CH5/EX5.12/Ex5_12.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/2528/CH5/EX5.12/Ex5_12.sce b/2528/CH5/EX5.12/Ex5_12.sce new file mode 100755 index 000000000..2d7214aa5 --- /dev/null +++ b/2528/CH5/EX5.12/Ex5_12.sce @@ -0,0 +1,14 @@ +//Example5.12:"Output "
+//Page 163
+clear;
+clc;
+Av=20; //in dB
+Vin=-60; //in dBV
+CMRR=-90; //in dB
+//for differential input
+Vout=Av+Vin;
+disp("dBV",Vout,"Vout for differential mode input");
+//for common mode input
+Vout1=Vout+CMRR;
+disp("dBV",Vout1,"Vout for common mode signal");
+//This signal is so small that it is overshadowed by noise
|