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

 Réponse acceptée

moheno
moheno le 17 Mai 2023

0 votes

这样的图像是否满足你的要求:请你自己稍加修改程序,以致达到你的要求!
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')

Plus de réponses (0)

Catégories

En savoir plus sur 启动和关闭 dans Centre d'aide et File Exchange

Community Treasure Hunt

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

Start Hunting!