How to change the size of a plot figure
927 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Ivan Mich
am 23 Okt. 2019
Kommentiert: Adam Danz
am 26 Sep. 2025 um 13:41
Hello,
I have a question. I would like to remake the size of my plots in matlab. Especially, i have observed that the plots have a "rectangle" format. So I would like to make my plot in a "square" format. I mean that I want my X axes to have the same size with the Y axis.
Could you please help me ?
0 Kommentare
Akzeptierte Antwort
Lucifer__
am 23 Okt. 2019
Set the ‘Position’ property on the current figure (gcf). By default, the position is in pixels.
x0=10;
y0=10;
width=550;
height=400
set(gcf,'position',[x0,y0,width,height])
You can specify other units (inches, centimeters, normalized, points, or characters). For example:
set(gcf,'units','points','position',[x0,y0,width,height])
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Printing and Saving 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!