how to eliminate the blank between subplot ?
Mostra commenti meno recenti
what i mean is to make subplot box close to each other
Risposta accettata
Più risposte (1)
Walter Roberson
il 6 Mag 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 Commento
Roger
il 6 Mag 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!