is it possible to use square subplots?
Mostra commenti meno recenti
if I use axis image: the problem is the gaps are too big between subplots, I would like to adjust the figure size also automatically, if possible
Risposta accettata
Più risposte (2)
figure('Position', [100, 100, 400, 400]);
axes
axis('equal') % [EDITED: or better 'square' !]
Ivan Shorokhov
il 7 Lug 2015
Modificato: Ivan Shorokhov
il 7 Lug 2015
For each subplot, store its handle.
h = subplot(2,3,1);
Then set the 'position' property of h to be anything you want.
p = get(h, 'pos');
This is a 4-element vector [left, bottom, width, height] which by default is in normalized coordinates (percentage of figure window). For instance, to add 0.05 units (5% of figure window) to the width, do this:
p(3) = p(3) + 0.05;
set(h, 'pos', p);
The SUBPLOT command picks standard values for these parameters, but they could be anything you want. You could put axes anywhere on the figure you want, any size you want.
Please vote for the answer.
3 Commenti
Mr M.
il 7 Lug 2015
Ivan Shorokhov
il 7 Lug 2015
Modificato: Ivan Shorokhov
il 7 Lug 2015
you can find an answer in the following link: http://uk.mathworks.com/help/matlab/creating_plots/aspect-ratio-for-2-d-axes.html
Mr M.
il 7 Lug 2015
Categorie
Scopri di più su Subplots in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!