How to add both title and change the scale of a color bar
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Matthew Backert
am 5 Feb. 2020
Beantwortet: Sindar
am 5 Feb. 2020
I am trying to add a title to the colorbar of a contour plot but also change the scaling of the colorbar. All I have found online is instructions for one or the other. When I have this:
title(colorbar, 'Electric Potential Field, V');
caxis([-45 150]);
set(colorbar, 'YTick', -45:15:150);
I get the scale I want but not the title. If I put the title command afterward I lose the scaling. Is there a command that I can use to have both?
0 Kommentare
Akzeptierte Antwort
Sindar
am 5 Feb. 2020
cb=colorbar();
cb.Label.String = 'Electric Potential Field, V';
cb.Ticks = -45:15:150;
caxis([-45 150]);
0 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu 2-D and 3-D Plots 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!