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 /881/CH1/EX1.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 '881/CH1/EX1.4')
-rwxr-xr-x | 881/CH1/EX1.4/exa1_4.sce | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/881/CH1/EX1.4/exa1_4.sce b/881/CH1/EX1.4/exa1_4.sce new file mode 100755 index 000000000..1c6c89326 --- /dev/null +++ b/881/CH1/EX1.4/exa1_4.sce @@ -0,0 +1,29 @@ +clc;
+//Example 1.4
+//Page no 8
+
+//Solution
+
+//(a)
+
+p1=(10^-2.7)*(10^-3);
+
+disp('W', p1,"-27dBm in absolute power is, ");
+
+//(b)
+
+p2=(10^1.3)*(10^-3);
+
+disp('W', p2,"13dBm in absolute power is, ");
+
+//(c)
+
+p3=(10^4)*(10^-3);
+
+disp('W', p3,"40dBm in absolute power is, ");
+
+//(d)
+
+p4=(10^-5.3)*(10^-3);
+
+disp('W', p4,"-53dBm in absolute power is, ");
|