我尝试了以下代码来阴影两条曲线之间的区域。
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');
但是它不起作用,我得到以下输出:
关于可能出了什么问题,您有什么建议吗?