How to set default figure size?
134 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
The default figure sizes of different computers are different. Therefore,
1) I want to know the default figure size of one of the computers.
2) And I want to set the same figure size as a default for other computers.
Many thanks in advance!
0 Kommentare
Antworten (1)
the cyclist
am 18 Jul. 2017
Bearbeitet: the cyclist
am 18 Jul. 2017
get(0,'defaultfigureposition')
Then set the figure position to whatever you want using the equivalent set() command.
5 Kommentare
Antonio Astorino
am 4 Nov. 2017
Hi Sungwoo! I am experiencing a similar problem. Have you solved yours? If you did, could you please share your solution? Thanks a lot.
Best regards,
Antonio.
Sargondjani
am 23 Nov. 2024 um 11:33
Bearbeitet: Sargondjani
am 23 Nov. 2024 um 11:48
For future reference: you can always save a figure first in a certain format. There are the options to use saveas, print, exportgraphics:
saveas(figname,'filename','fig'); %example with matlab "figure"
print(figname,'filename', '-dpng')%example with png format
exportgraphics(figname,'filename.eps')%example with eps format
I think the last one is the preferred function.
Siehe auch
Kategorien
Mehr zu MATLAB Report Generator finden Sie in Help Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!