How can I standardize figure sizes
Mostrar comentarios más antiguos
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
Respuesta aceptada
Más respuestas (1)
Joseph Cheng
el 21 de Mayo de 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 comentarios
Joseph Cheng
el 21 de Mayo de 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
el 21 de Mayo de 2015
Joseph Cheng
el 21 de Mayo de 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
el 21 de Mayo de 2015
Yewande Oni
el 21 de Mayo de 2015
Categorías
Más información sobre Creating, Deleting, and Querying Graphics Objects en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!