Matlab用subplot画图,怎么加总标题
3个回答
展开全部
你用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('总标题')
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('总标题')
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
可这样:
figure,title('加总标题')
subplot(2,1,1),plot(...)
subplot(2,1,2),plot(....)
figure,title('加总标题')
subplot(2,1,1),plot(...)
subplot(2,1,2),plot(....)
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询