Jan Strube wrote:
> Sorry, reposting, because I sent it from the wrong address.
>
> I'm having some problems understanding the difference between
> pylab.xticks() and pylab.yticks()
> Consider the following:
>
> import pylab as P
> import numpy as N
>
> data =
Sorry, reposting, because I sent it from the wrong address.
> I'm having some problems understanding the difference between pylab.xticks()
> and pylab.yticks()
> Consider the following:
>
> > import pylab as P
> > import numpy as N
> >
> > data = N.random.random((10, 10))
> > P.matshow(data)
> > P