Matlab的。将图例放在图表外

时间:2017-06-03 23:03:16

标签: matlab plot legend

我有以下代码

while(something){
   int i = 4;
   int b =i*100;
   //...
}

生成以下图表 enter image description here

我想在情节之外有传说,并且所有这些都保持正常大小。 (所以传说中应该是其中一个红圈。任何解决方案?

2 个答案:

答案 0 :(得分:5)

您可以添加另一个subplot作为空白区域,仅保留legend,关闭轴可见性,并'YData'的{​​{1}}值绘制线条,因此它们不会渲染:

figure(1);
hSub = subplot(511); plot(1, nan, 1, nan, 'r'); set(hSub, 'Visible', 'off');
subplot(512); plot(T, a, T, a2, 'r'); grid; ylabel('p (°/s)');
subplot(513); plot(T, b, T, b2, 'r'); grid; ylabel('r (°/s)');
subplot(514); plot(T, c, T, c2, 'r'); grid; ylabel('phi (º)');
subplot(515); plot(T, d, T, d2, 'r'); grid; ylabel('ay (m/s2)');
xlabel('Time [s]');
legend(hSub, 'measured', 'estimated', 'Location', 'east');

这是结果:

nan

答案 1 :(得分:0)

尝试使用get方法获取句柄位置,并通过执行某些算法手动更改位置。例如,

T = [0:1:30];
a = [5:1:35]; a2 = [0:1:30];
b = [-4:1:26]; b2 = [12:1:42];
c = [16:1:46]; c2 = [15:1:45];
d = [2:1:32]; d2 = [-5:1:25];
figure(1)

title('Time histories of output variables (measured vs estimated)')

f1 = subplot(411);plot(T,a, T,a2,'r'); grid; ylabel('p (°/s)'); 
pos_f1 = get(f1,'Position');
hl = legend('measured','estimated','Location','bestoutside');
pos_hl = get(hl, 'Position');

subplot(412),plot(T,b, T,b2,'r'); grid; ylabel('r (°/s)');
subplot(413),plot(T,c, T,c2,'r'); grid; ylabel('phi (º)');
subplot(414),plot(T,d, T,d2,'r'); grid; ylabel('ay (m/s2)');

set(hl,'Position',[pos_f1(1)+pos_f1(3)-pos_hl(3)...
pos_hl(2)+pos_hl(4)+0.015...
pos_hl(3)...
0.5*pos_hl(4)]);

这应该会给你:subplot with changed position

你可能需要在最后一行中使用参数,但是你明白了。