Matlab上的多个传说2014b

时间:2016-08-11 13:58:19

标签: matlab plot legend

我想在一个情节上有多个传说。此解决方案在2014b版本之前完美运行。我试图找出如何优雅地使用句柄,但到目前为止没有成功。欢迎任何想法。

2013b中的示例:

x = 1:50;
y1 = sin(x/2);
y2 = cos(x/2);

f = figure(1);
pl(1) = plot(x,y1,'g');hold on;
pl(2) = plot(x,y2,'r');

h1 = legend('eg1','eg2');    
set(h1,'Location','NorthEast')

tmp = copyobj(h1,f);

h2 = legend(pl,'sin','line');    
set(h2,'Location','SouthWest')

我确实使用

获得了一些东西
ax = gca;
tmp = copyobj([h1,ax],f);

但是当我再次设置图例时,之前的图例就会出现在图中。

谢谢!

2 个答案:

答案 0 :(得分:4)

默认情况下,Matlab每个轴仅允许一个图例,因此您需要创建假/空辅轴以获取图例。 Mathworks help有一个很好的例子

生成以下图表的代码在这里

x= 0:0.01:2*pi;
y = sin(x);
hl1 = line(x, y,'Color','k','LineStyle','--');
ax1 = gca;
set(ax1,'xlim',[0, 7],'ylim',[-1, 
1],'XColor','k','YColor','k');
legend_handle1 = legend(' sin');
ax2 = axes('Position',get(ax1,'Position'),...
           'xlim',[0, 7],'ylim',[-1,1],...
           'Visible','off','Color','none');
hl2 = line(pi/2, 1,'Color','r','Marker', 'o','Parent',ax2);
hl3 = line(pi, 0,'Color','g','Marker', 'x','Parent',ax2);
legend_handle2 = legend('peak', 'zero');
set(legend_handle2, 'Color', 'none');

enter image description here

答案 1 :(得分:0)

这是一种简单的替代方法

t = linspace(0,2*pi,200);
frequencies=1:3;

for w=frequencies;
    y = sin(w*t);
    plot(t,y) 
    hold on
end

legend("w = " + num2str(frequencies'));

enter image description here