How to draw square plot in matlab?
403 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Nilanshu Mahant
am 16 Mär. 2022
Beantwortet: Kazi
am 29 Mai 2024
I want to draw individual and subplots in square dimenstion. Is there any command which I can use to get a square plot?
0 Kommentare
Akzeptierte Antwort
Sam Chak
am 16 Mär. 2022
Here is the basic to draw a square or any rectangular object. The rectangle function will pick a corner at (2, 3) and then draw a 5-by-5 square.
rectangle('Position',[2 3 5 5])
axis square
axis([0 10 0 10])
Result:
Weitere Antworten (1)
Siehe auch
Kategorien
Mehr zu Subplots finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!