how to eliminate the blank between subplot ?
Ältere Kommentare anzeigen
what i mean is to make subplot box close to each other
Akzeptierte Antwort
Weitere Antworten (1)
Walter Roberson
am 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 Kommentar
Roger
am 6 Mai 2015
Kategorien
Mehr zu Subplots finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!