how to eliminate the blank between subplot ?
Afficher commentaires plus anciens
what i mean is to make subplot box close to each other
Réponse acceptée
Plus de réponses (1)
Walter Roberson
le 6 Mai 2015
create all subplots first before trying to move them around. If you try to move them around before they are all created, chances are good that you will accidentally end up with subplot() deleting some of the subplots.
Once all the subplots are created, set() the Position property of their handles. For example,
for K = 1 : 6
h(K) = subplot(1,6,K);
end
set(h(2), 'Position', [.... some new location ....]);
1 commentaire
Roger
le 6 Mai 2015
Catégories
En savoir plus sur Subplots 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!