Suresh Pillai wrote:
> The new matshow() seems to like ticks every 4 units (or multiples of 4
> for larger scales) rather than the normal, more desirable every 5 units.
>
> Compare:
>
> import pylab
> matrix = pylab.rand(30,30)
> pylab.matshow(matrix)
> pylab.show()
>
> with
>
> import pylab
>
The new matshow() seems to like ticks every 4 units (or multiples of 4
for larger scales) rather than the normal, more desirable every 5 units.
Compare:
import pylab
matrix = pylab.rand(30,30)
pylab.matshow(matrix)
pylab.show()
with
import pylab
matrix = pylab.rand(30,30)
pylab.imshow(matrix)