如何为图例添加选择性数据集

时间:2013-04-22 11:11:51

标签: plot legend matlab-figure legend-properties

我有一个绘图,其中绘制了15个数据集及其趋势线(lslines)。如果我使用命令图例,它会显示所有数据集和lslines,共30个图例。但是我想要点燃lslines的传说。怎么可能?

1 个答案:

答案 0 :(得分:1)

存储每个绘制数据集的句柄,并使用它们创建图例:

figure
hold on
h1 = plot(rand(1,10),'b');
h2 = plot(rand(1,10),'r');
h3 = plot(rand(1,10),'g');

legend([h1,h3],'data 1','data 3') %displays a legend for the first and third plot but not the second plot