How do you remove tick marks (not labels) from a colorbar?
38 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
I have a figure plotted with imagesc and the associated colorbar. How do I remove the tick marks from the colorbar?
0 commentaires
Réponse acceptée
Star Strider
le 15 Sep 2022
Try this —
cm = [1 0 0; 1 1 1; 0 0 1]; % Basic Colormap
cmi = interp1([-2; 0; 5], cm, (-2:5)) % interpolated Colormap
M = randi([-2 5],9) % Matrix
figure
imagesc(M)
colormap(cmi)
hcb = colorbar;
figure
imagesc(M)
colormap(cmi)
hcb = colorbar;
hcb.TickLength = 0; % Set TickLength' To 0
.
0 commentaires
Plus de réponses (1)
Voir également
Catégories
En savoir plus sur Orange 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!