How to delimit the number of decimal places in a colorbar?
31 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Artur M. G. Lourenço
le 18 Août 2012
Commenté : Luis Botton
le 26 Juin 2018
In this case, for example:
contourf(peaks(60))
colormap cool
colorbar('location','southoutside')
i want 4 decimal places.
thnks in adv,
0 commentaires
Réponse acceptée
Plus de réponses (2)
Matt Fig
le 18 Août 2012
Modifié(e) : Matt Fig
le 18 Août 2012
Here is an example of how to do it.
contourf(peaks(60))
colormap cool
C = colorbar('location','southoutside'); % Get the handle.
% Now use the current xtick to make an xticklabel we like.
L=cellfun(@(x)sprintf('%.4f',x),num2cell(get(C,'xtick')),'Un',0);
set(C,'xticklabel',L)
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!