web-dev-qa-db-ja.com

MATLABで再スケーリングせずに軸の外側に凡例を追加する

軸のセットが事前に配置されたMATLABのGUIがあります。凡例のlocationプロパティを使用して、凡例を軸の右側に配置しています。ただし、これを行うと、軸と凡例が軸の元の幅を占めるように軸が再スケーリングされます。サイズ変更を回避する方法はありますか?

例:

x=0:.1:10;
y=sin(x);
figure
pos=get(gca,'position');
pos(3)=.5; %#re-size axes to leave room for legend
set(gca,'position',pos)
plot(x,y)

これまでのところ私は得る:

alt text

場所の凡例:

legend('sin(x)','location','eastoutside')

... aaaaand.。

alt text

MATLABは、すべてを元の軸空間に押し込みます。これを回避する方法はありますか?

14
Doresoom

[〜#〜]編集[〜#〜]

%# create three axes with custom position
x=0:.1:10;
y=sin(x);
hAx1 = axes('Position',[0.05 0.05 0.7 0.2]); plot(hAx1, x,y)
hAx2 = axes('Position',[0.05 0.4 0.7 0.2]); plot(hAx2, x,y)
hAx3 = axes('Position',[0.05 0.75 0.7 0.2]); plot(hAx3, x,y)

%# add legend to middle one
h = legend(hAx2, 'sin(x)'); pos = get(h,'position');
set(h, 'position',[0.8 0.5 pos(3:4)])

alt text

8
Amro