图中消息的空间

时间:2018-04-24 09:50:15

标签: matlab matlab-figure

在图(1)中,我有一个带有标签轴,标题,图例等的情节,在这个情节下,仍然在图(1)中,我想添加一个空间,我现在可以显示几行#&# 39; m显示在命令窗口内。

像这样:

desired output

怎么做?

1 个答案:

答案 0 :(得分:3)

如何利用subplot

subplot(10,1,1:7);                     %Taking most of the figure space for actual plot
plot(randperm(100),'d-');              %A random plot
xlabel('xlabel');  ylabel('ylabel');   %Axis Labels
legend show;                           %Legend display

subplot(10,1,10);                      %And just one part for the text/messages
xlim([1 10]);                          %For aesthetics
str = {'Comment-1','Comment-2'};       %Text that we want to display
text(1,1,str);                         %Putting the text
axis off;                              %Turning off the axis

output