Home > vis > get_duration_figure.m

get_duration_figure

PURPOSE ^

SYNOPSIS ^

This is a script file.

DESCRIPTION ^

CROSS-REFERENCE INFORMATION ^

This function calls: This function is called by:

SOURCE CODE ^

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 % set(gca,'XTick',0:1:7);
0021 % set(gca,'XTickLabel',{'0','1','2','3','4','5','6','7'});
0022 % set(gca,'YTick',0:.1:1);
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');

Generated on Thu 17-Mar-2011 14:45:51 by m2html © 2005