如何为两条曲线之间的区域着色?

时间:2018-09-12 16:03:07

标签: matlab plot matlab-figure fill

我尝试了以下代码来阴影两条曲线之间的区域。

x=1:1:216;
y1=upper
y2=lower
% plot the line edges
hold on 
plot(x', y1, 'LineWidth', 1);
plot(x', y2, 'LineWidth', 1);
% plot the shaded area
fill([x' fliplr(x')], [y2 fliplr(y1)], 'r');

但是它不起作用,我得到以下输出:

following output

关于可能出了什么问题,您有什么建议吗?

0 个答案:

没有答案