How to fill grids?

6 vues (au cours des 30 derniers jours)
Sudhanshu Kumar
Sudhanshu Kumar le 3 Fév 2021
Modifié(e) : VBBV le 3 Fév 2021
How to fill light blue above the dotted line and slightly darker colour below dotted line in whole figure.

Réponse acceptée

VBBV
VBBV le 3 Fév 2021
Modifié(e) : VBBV le 3 Fév 2021
clear
clc
x = 0:30;
y = ones(1,length(x))*202
ylim(([0 1600]))
plot(x,y,'b--','linewidth',4)
xx = [0 30 30 0];
yy = [0 0 200 200];
xx2 = [0 30 30 0];
yy2 = [203 203 1600 1600];
patch(xx,yy,'blue','EdgeColor','none','FaceAlpha',0.5);
hold on
patch(xx2,yy2,'red','EdgeColor','none','FaceAlpha',0.5);
Try with different coordinates and colors
  1 commentaire
VBBV
VBBV le 3 Fév 2021
Refer patch for filling

Connectez-vous pour commenter.

Plus de réponses (0)

Community Treasure Hunt

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

Start Hunting!

Translated by