How can I standardize figure sizes
Afficher commentaires plus anciens
Hiya,
I want my figures to all be created in the same dimension. Currently my figures are the size of the window it opens in (which are usually quite small) and I have to stretch it out. Is there a way for them to open up a preset size?
Thanks
Yewande
Réponse acceptée
Plus de réponses (1)
Joseph Cheng
le 21 Mai 2015
Use the set() function and parameters 'position' and 'units'.
%example:
figure;
set(gcf,'units','normalized','position',[0 0 1 1])
will make the figure window full sized
5 commentaires
Joseph Cheng
le 21 Mai 2015
other units can be set like 'pixel' to specifically set the number of pixels but i usually stay in normalized such that they get scaled depending on which computer or monitor setup i have.
Yewande Oni
le 21 Mai 2015
Joseph Cheng
le 21 Mai 2015
what do you mean merge the two figures together? for me it just stacks them on top of each other. do you want to tile the outputs so they are all displayed? thats what the first two entries in the position are. the 4 entries in the position (if you read) the documentation is [screen_x_position screen_y_position figure_width figure_height] where screen_position is the lower left corner of the window.
Yewande Oni
le 21 Mai 2015
Yewande Oni
le 21 Mai 2015
Catégories
En savoir plus sur Creating, Deleting, and Querying Graphics Objects 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!