对于MATLAB图,我有类似的东西:
figure; hold on;
line ( [1 2], [3 4] );
line ( [5 6], [7 8] );
plot(x1,y1,'r.');
plot(x2,y2,'b.');
其中x1,y1,x2,y2都是向量。
如何仅为最后两个图添加legend
,而不是两行?
答案 0 :(得分:9)
您必须获取最后两个图的句柄,并告诉legend
仅绘制这两个图。例如:
h1 = plot(x1,y1,'r.');
h2 = plot(x2,y2,'b.');
legend([h1,h2],'red','blue')