Matlab, how to adjust axis values on figures (scientific notaiton - not enough precision) [duplicate]
Possible Duplicate: Suppress exponential formatting in figure ticks Matlab is outputting my axis markers as 5.777 x10^6 for every tick mark in my figures... is it possible to get matlab to output the actual decimal number rather than scientific notation so the tick marks are actually different values rather than all 5.777? Currently I don't really know where in space these plots are because of a lack of precision on the axis. One possible solution: plot(rand(100,1).*1e6) set(gca, 'YTickLabel', num2str(get(gca,'YTick')','%d')) Obviously you can customize the formatting to your liking Another