matlab图像绘制填色。

求问,图片中灰色的部分是怎么绘制的呀,想给平行于y轴的举行区域填色,但是fill和area都没成功

 采纳的回答

moheno
moheno 2023-5-17

0 个投票

这样的图像是否满足你的要求:请你自己稍加修改程序,以致达到你的要求!
clear;
clc;
t = 0:0.01:20;
y = sin(t);
hold on
area([5,7],[3,3],'facecolor','g')
area([5,7],[-3,-3],'facecolor','g')
plot(t,y,'r')

更多回答(0 个)

类别

帮助中心File Exchange 中查找有关 启动和关闭 的更多信息

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!