2

对于 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仅添加最后两个图,而不是两条线?

4

1 回答 1

9

您将必须获取最后两个绘图的句柄,并告诉legend您只为这两个绘图。例如:

h1 = plot(x1,y1,'r.');
h2 = plot(x2,y2,'b.');
legend([h1,h2],'red','blue')
于 2012-11-06T01:38:42.357 回答