How can I avert that matlab round off the number?
Mostrar comentarios más antiguos
Hi:
How can I avert that matlab round off in the plot the number. If I add as input this:1672324.884 in my plot appears 167*10^4.
Thanks
1 comentario
Jan
el 4 de Nov. de 2012
Please post the corresponding code. "Adding 1672324.884 in your plot" is nothing, which is reproducible directly. I assume you are talking about the tick labels...
Respuesta aceptada
Más respuestas (1)
Walter Roberson
el 4 de Nov. de 2012
If you set the xticklabel or yticklabel (as appropriate) property for the plot axis, then MATLAB will not show exponential format. You can format your ticks as you find appropriate.
set(gca, 'XTickLabel', str2num(reshape(get(gca, 'XTick'), [], 1), '%12.3f'))
Categorías
Más información sobre Axis Labels en Centro de ayuda y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!