Matlab - 子图的多行标题图

时间:2013-08-20 13:33:21

标签: matlab matlab-figure

我想在顶部找到一个带有一些子图和一个主标题的图,如下所示:

Multiline title

我使用的代码:

figure
suptitle({'Multi-','line','Title'});
subplot(7,2,1:4);
    % there's intentionnal gap between 2 plots
    % therefore subplots 5 and 6 aren't used
plot(X);
subplot(7,2,7:14);
plot(Y);

问题在于标题的第一行超出了数字。

1 个答案:

答案 0 :(得分:4)

The documentation for suptitle明确指出:

  

在所有子图命令之后使用此功能。

所以你的解决方案是:

figure
subplot(7,2,1:4);
    % there's intentionnal gap between 2 plots
    % therefore subplots 5 and 6 aren't used
plot(X);
subplot(7,2,7:14);
plot(Y);
suptitle({'Multi-','line','Title'});