0001
0002 M = [1 0.67 0.72;
0003 2 0.63 0.71;
0004 3 0.64 0.67;
0005 4 0.50 0.69;
0006 5 0.52 0.66;
0007 6 0.53 0.61;];
0008 plot(M(:,1), M(:,2)*100, '--yv','LineWidth',2,...
0009 'MarkerEdgeColor','y',...
0010 'MarkerFaceColor','y',...
0011 'MarkerSize',10);
0012
0013 hold on;
0014 plot(M(:,1), M(:,3)*100, '--g^', 'LineWidth',2,...
0015 'MarkerEdgeColor','g',...
0016 'MarkerFaceColor','g',...
0017 'MarkerSize',10);
0018
0019
0020
0021
0022
0023
0024 axis([0 7 0 80]);
0025 xlabel('Collision Duration');
0026 ylabel('Percentage of Tracked Positions (%)');
0027 grid on;
0028 legend('SH','MH','Location','SouthEast');