blob: bd06f587e5f70e38715899fd57a10bcadcee70e5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
clc;
//page no 539
//prob no. 15.9
//A taxi compony using central dispatcher with antenna height=15m & taxi antenna height=1.5m
ht=15;hr=1.5;
//a)Determination of max commn dist betn dispatcher and taxi
d1=sqrt(17*ht)+sqrt(17*hr);
disp('km',d,'a)The max commn dist betn dispatcher & taxi');
//b)Determination of max ommn dist betn 2 taxis
d2=sqrt(17*hr)+sqrt(17*hr);//ht=hr=height of antenna of taxi cab
disp('km',d2,'The max commn dist betn two taxi is');
|