| Author |
Comment/Response |
Dave Kysela
|
06/20/07 11:11pm
I'm plotting on a log scale, and I'm only including tick labels at powers of 10. To tidy things up, I'd like to display each label without the leading "1 x". For example, rather than "1. x 10^2" I'd prefer simply "10^2". Does anyone know a simple, but recursive way of doing this. I realize I can just specify all the tick labels explicitly, but that's not very elegant or adaptable as I tweak the axes for various plots.
Currently, I specify the ticks using something like this:
FrameTicks -> Table[{10^i,ScientificForm[10.^i]},{i,0,10}]
Thanks,
Dave
URL: , |
|