web-dev-qa-db-ja.com

MATLABの1つのプロットに2つの凡例を追加するにはどうすればよいですか?

MATLABのプロットに2つの凡例を追加したいと思います。これどうやってするの?

8
Will

(もちろん別の場所に)独自の凡例を使用して、2番目の重ね合わせた軸を作成できます。


編集:

簡単な例を次に示します。

%# create some plot with a legend
hAx(1) = axes();
hLine(1) = plot(1:10, 'Parent',hAx(1));
set(hAx(1), 'Box','off')
legend(hLine(1), 'line')

%# copy the axis
hAx(2) = copyobj(hAx(1),gcf);
delete( get(hAx(2),'Children') )            %# delete its children
hLine(2) = plot(sin(1:10), 'Color','r', 'Parent',hAx(2));
set(hAx(2), 'Color','none', 'XTick',[], ...
    'YAxisLocation','right', 'Box','off')   %# make it transparent
legend(hLine(2), {'curve'}, 'Location','NorthWest', 'Color','w')

screenshot

9
Amro

スティッキーな凡例を作成するには、copyobjを呼び出します。

handle_legend = legend(handle_plot, 'string1');
copyobj(handle_legend, handle_figure);

copyobj関数は、関連する凡例を図内に保持するだけです。

これは単一の軸内で機能し(2番目の重ね合わせた軸を作成する必要はありません)、この方法で複数の凡例を追加できます。

例:

%declare figure
hfigure = figure('Color', 'w');

%plot 2 lines (red and blue)
hplot1 = plot(1:10,'r-.x');
hold on;
hplot2 = plot(10:-1:1,'b--o');

%plot legends
hlegend1 = legend(hplot1, 'Data 1', 'Location','East'); %display legend 1
new_handle = copyobj(hlegend1,hfigure);                 %copy legend 1 --> retain
legend(hplot2, 'Data 2', 'Location','West');            %display legend 2

enter image description here

3
marsei

複数のプロットの例:

hAx(1) = axes();
hold on
hLine(1) = plot(1:10, 'Parent',hAx(1),'color','b');
hLine(2) = plot(3:15, 'Parent',hAx(1),'color','b', 'linestyle','--');
set(hAx(1), 'Box','off')
legend([hLine(1), hLine(2)],{ 'line' 'line2'})

%# copy the axis
hAx(2) = copyobj(hAx(1),gcf);
delete( get(hAx(2),'Children') )            %# delete its children
hold on
hLine(3) = plot(sin(1:10), 'Color','r','Parent',hAx(2));
hLine(4) = plot(cos(1:10), 'Color','r','linestyle','--','Parent',hAx(2));
hold off
set(hAx(2), 'Color','none', 'XTick',[], ...
'YAxisLocation','right', 'Box','off')   %# make it transparent
legend([hLine(3),hLine(4)], {'sin' , 'cos'}, 'Location','NorthWest', 'Color','w')
%legend(hLine(3), {'sin'}, 'Location','NorthWest', 'Color','w')
1
houcinus

最初の凡例を作成したら、新しい非表示の軸ハンドルを作成します。

ax=axes('Position',get(gca,'Position'),'Visible','Off');

次に、新しい軸に2番目の凡例を作成します。

legend(ax,...);

これは主に@Amroの回答と同じですが、より単純で短いものです。

0
tvo