1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
|
y=[0.9753 0.9901 0.9938 0.9969 0.9975 0.9981 0.9981 0.9988 0.9988 0.9988 0.9994 0.9994 0.9994 1.0000 1.0000]
x=[1 20 40 60 80 100 120 140 160 180 200 220 240 260 280]
y = y*1e2;
figure
hold on;
plot(x,y,'R','LineWidth',2)
xlabel('Rank','fontsize',16,'fontweight','b')
ylabel('Recognition Rate','fontsize',16,'fontweight','b')
title('CMC','fontsize',16,'fontweight','b')
text(200,0.98*1e2,'With Selection','FontSize',13,'Color','r')
text(0,0.9753*1e2,'\bullet','FontSize',12,'Color','r');
y=0.965
y=y*1e2;
%x=1
hold on;
plot(x,y,'R','LineWidth',2);
set(gca,'XTick',x)
y1=[0.9698 0.9846 0.9889 0.9895 0.9938 0.9951 0.9957 0.9957 0.9969 0.9988 0.9988 0.9994 1.0000 1.0000 1.0000]
x1=[1 20 40 60 80 100 120 140 160 180 200 220 240 260 280]
hold on;
plot(x1,y1,'B','LineWidth',2),text(150,0.98*1e2,'Without Selection','FontSize',13,'Color','b'),
text(0,0.9698*1e2,'\bullet','FontSize',15,'Color','b'); |
Partager