How to plot a rectangle from a single point ?
3 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Is there a way to plot a rectangle from a single point?
0 commentaires
Réponse acceptée
Wan Ji
le 24 Août 2021
Modifié(e) : Wan Ji
le 24 Août 2021
Hi,
Use rectangle function
rectangle('Position',[0,0,2,4]); % [x_left_down_corner, y_left_down_corner, length, width]
Use axis function make it look clear
axis([-1,3,-1,5])
axis equal
3 commentaires
Wan Ji
le 24 Août 2021
It is not enough to have x and y, but still length and width are required.
length = 2;
width = 4;
rectangle('Position',[ex.x, ex.y, length, width]); % [x_left_down_corner, y_left_down_corner, length, width]
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur 2-D and 3-D Plots dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!