Azzera filtri
Azzera filtri

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

3 visualizzazioni (ultimi 30 giorni)
rather than having 3e+04 how to get 30000

Risposte (1)

Joep
Joep il 3 Lug 2015
Modificato: Joep il 3 Lug 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(:))));

Categorie

Scopri di più su 2-D and 3-D Plots in Help Center e File Exchange

Tag

Community Treasure Hunt

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

Start Hunting!

Translated by