How to modify the distance between the numbers and the bar and increase tick width in a matlab colorbar?
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Dear Matlab experts,
I need a nice colorbar with numbers.
But the bar generated was too close to the tick labels (See the following picture). And the line width of ticks were too small.
Therefore, do you know how to set the distance between the number and the colorbar and increase the line width of ticks?
Or do you have available codes for a nicer colorbar?
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/154645/image.png)
Thank you!
2 commentaires
Réponses (1)
Chunru
le 20 Juil 2022
x = randi([-4 4], [8 7]);
subplot(121);
imagesc(x);
colormap(jet)
h1 = colorbar;
subplot(122);
imagesc(x);
colormap(jet)
h2 = colorbar
h2.Ticks = [-4:2:4];
0 commentaires
Voir également
Catégories
En savoir plus sur Colormaps dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!