How do you remove tick marks (not labels) from a colorbar?
38 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
L'O.G.
el 15 de Sept. de 2022
Respondida: Jonas
el 15 de Sept. de 2022
I have a figure plotted with imagesc and the associated colorbar. How do I remove the tick marks from the colorbar?
0 comentarios
Respuesta aceptada
Star Strider
el 15 de Sept. de 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 comentarios
Más respuestas (1)
Ver también
Categorías
Más información sobre Orange en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!