Matlab用subplot画图,怎么加总标题

发布网友 发布时间:2022-04-19 15:01

我来回答

2个回答

热心网友 时间:2022-03-29 06:06

你用Suptitle命令即可。下面是该命令的帮助文档。

suptitle('text') adds text to the top of the figure
 above all subplots (a "super title"). Use this function
 after all subplot commands.

下面是一个例子,注意,最好画完所有的子图后再用Suptitle,不然可能会出现和第一个子图的标题覆盖的情况。

clc;clear;close all
x = 0:0.01:4*pi;
y1 = cos(x);
y2 = sin(x);
figure(1)
subplot(2,1,1);
plot(x,y1);
title('cos(x)');
subplot(2,1,2);
plot(x,y2);
title('sin(x)');
suptitle('总标题')

下面是结果:

热心网友 时间:2022-03-29 07:24

用sgtitle('总标题')
这个语句要写在代码最后。比如:
figure()
subplot(2,1,1)
title('子标题1')
subplot(2,1,2)
title('子标题2')
sgtitle('总标题')
不知道是不是版本问题(我用的2018b), suptitle 会报错
声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。
E-MAIL:11247931@qq.com