How do you remove tick marks (not labels) from a colorbar?
38 views (last 30 days)
Show older comments
I have a figure plotted with imagesc and the associated colorbar. How do I remove the tick marks from the colorbar?
0 Comments
Accepted Answer
Star Strider
on 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 Comments
More Answers (1)
See Also
Categories
Find more on Orange in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!