diff options
Diffstat (limited to '3446/CH3/EX3.4/Ex3_4.sce')
-rw-r--r-- | 3446/CH3/EX3.4/Ex3_4.sce | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/3446/CH3/EX3.4/Ex3_4.sce b/3446/CH3/EX3.4/Ex3_4.sce new file mode 100644 index 000000000..a7b3787dd --- /dev/null +++ b/3446/CH3/EX3.4/Ex3_4.sce @@ -0,0 +1,13 @@ +//Exa 3.4
+//To determine distance between transmitter and receiver.
+
+clc;
+clear all;
+
+shadow=10; //in dB
+Lp=150; //in dB
+
+//solution
+disp(" Using equation given in Problem i.e Lp=133.2+40*log(d) we get,");
+d=10^((Lp-10-133.2)/40);
+printf(" Separation between transmitter and receiver as %.2f km',d);
|