MATLAB中如何给subplot画出的图加上总图例?
发布网友
发布时间:2022-04-22 01:01
我来回答
共1个回答
热心网友
时间:2023-09-06 16:56
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('总标题')
结果为:
追问谢谢回答 不过我想加的是颜色条呢(图例)
追答那我理解错了,这个不会。