How to modify the colobar settings?
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Ravindu Lokuliyana
am 31 Okt. 2019
Beantwortet: meghannmarie
am 5 Nov. 2019
Just a simple question!!
How can I obtain following requirement for the colorbar?
- add units
- move colobar tilte to the desired position
0 Kommentare
Akzeptierte Antwort
meghannmarie
am 5 Nov. 2019
You could try this:
c = colorbar;
units = ' m';
c.TickLabels{end} = [c.TickLabels{end} units];
c.Location = 'westoutside';
0 Kommentare
Weitere Antworten (1)
meghannmarie
am 31 Okt. 2019
c = colorbar;
units = 'm';
c.TickLabels = cellfun(@(x) [x ' ' units], c.TickLabels, 'UniformOutput', false)
c.Position = [left,bottom, width,height];
2 Kommentare
Siehe auch
Kategorien
Mehr zu Axis Labels finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!