Effacer les filtres
Effacer les filtres

how to turn off scientific notations in figure ??? likein mine i'm getting 3+e02 i want it 300 only

3 vues (au cours des 30 derniers jours)
rather than having 3e+04 how to get 30000

Réponses (1)

Joep
Joep le 3 Juil 2015
Modifié(e) : Joep le 3 Juil 2015
try this:
for X-label
curtick = get(gca, 'XTick');
set(gca, 'XTickLabel', cellstr(num2str(curtick(:))));
for Y-label
curtick = get(gca, 'YTick');
set(gca, 'YTickLabel', cellstr(num2str(curtick(:))));

Catégories

En savoir plus sur 2-D and 3-D Plots dans Help Center et File Exchange

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by