gpt4 book ai didi

Matlab。将图例放在图外

转载 作者:太空宇宙 更新时间:2023-11-03 20:20:07 25 4
gpt4 key购买 nike

我有以下代码

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)')
subplot(411),plot(T,a, T,a2,'r'); grid; ylabel('p (°/s)');
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)');
legend('measured','estimated','Location','bestoutside')
xlabel('Time [s]');

生成以下图 enter image description here

我希望图例位于情节之外,并且所有图例都保持正常大小。 (所以图例应该在那些红色圆圈之一中。有什么解决办法吗?

最佳答案

您可以添加另一个 subplot作为空区域仅容纳 legend , 轴可见性关闭并且 nan绘制线的 'YData' 的值,因此它们不呈现:

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');

结果如下:

enter image description here

关于Matlab。将图例放在图外,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44349293/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com