Colorbar for a Tiled Layout
Mostra commenti meno recenti

Currently have a 1x2 tiledlayout. I have the colorbar plotted below the 2nd plot using colorbar('southoutside')
Question:
How can I stretch it out so that the colorbar is underneath the plot
Risposte (1)
Are you asking how to extend the colorbar to be under both axes?
Set the colorbar's Layout tile to south.
tcl = tiledlayout(1,2);
nexttile()
nexttile()
cb = colorbar();
cb.Layout.Tile = 'south';
Categorie
Scopri di più su Colorbar 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!
