hello guys. I how do i color the outer rectangle into red? this is the function.
figure
rectangle('Position',[0 0 2 4],'Curvature',0.2)
axis equal
rectangle ('Position',[0.2 3 0.7 0.9],'Curvature',0.2)

 Réponse acceptée

Star Strider
Star Strider le 7 Déc 2021

1 vote

figure
rectangle('Position',[0 0 2 4],'Curvature',0.2, 'FaceColor','r')
axis equal
rectangle ('Position',[0.2 3 0.7 0.9],'Curvature',0.2, 'FaceColor','w')
Both rectange objects must have the FaceColor values stated.
.

2 commentaires

원우 조
원우 조 le 7 Déc 2021
thank you
you really helped me a lot!!!!!!!!
Star Strider
Star Strider le 7 Déc 2021
As always, my pleasure!
.

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Labels and Annotations 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!

Translated by