matlab图像绘制填色。

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

 Respuesta aceptada

moheno
moheno el 17 de Mayo de 2023

0 votos

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

Más respuestas (0)

Categorías

Más información sobre 启动和关闭 en Centro de ayuda y File Exchange.

Preguntada:

el 17 de Mayo de 2023

Respondida:

el 17 de Mayo de 2023

Community Treasure Hunt

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

Start Hunting!