Specifications
55
Coordinate
Position X Y Z
1 0 200 0
2 50 180 0
3 -55 180 0
4 0 180 65
5 0 180 -50
6 35 180 35
7 -35 180 -35
8 -35 180 50
9 35 180 50
10 45 180 30
11 -45 180 30
12 45 180 -20
13 -50 180 -20
14 20 180 60
15 -20 180 60
16 20 180 -40
17 -25 180 -40
TABLE 5.1: Sensor range
Using computer software to plot these results shows the range the sensor can detect.
The following MATLAB code was produced to plot these points as vectors from the
origin in three dimensional space.
x = [0 50 -55 0 0 35 -35 -35 35 45 -45 45 -50 20 -20 20 -25];
y = [200 180 180 180 180 180 180 180 180 180 180 180 180 180 180 180 180];
z = [0 0 0 65 -50 -35 -35 50 50 30 30 -20 -25 60 60 -40 -40];
loop = 1;
for loop = 1:17;
plot3([0,x(1,loop)], [0,y(1,loop)], [0,z(1,loop)])
hold on;
loop = loop + 1;
end
plot3([0,x(1,1)], [0,y(1,1)], [0,z(1,1)], 'r')










