Borrar filtros
Borrar filtros

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

3 visualizaciones (últimos 30 días)
rather than having 3e+04 how to get 30000

Respuestas (1)

Joep
Joep el 3 de Jul. de 2015
Editada: Joep el 3 de Jul. de 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(:))));

Categorías

Más información sobre 2-D and 3-D Plots en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by