How can I standardize figure sizes
Show older comments
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
Accepted Answer
More Answers (1)
Joseph Cheng
on 21 May 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 Comments
Joseph Cheng
on 21 May 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
on 21 May 2015
Joseph Cheng
on 21 May 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
on 21 May 2015
Yewande Oni
on 21 May 2015
Categories
Find more on Entering Commands in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!