Hi,

I'm using 0.99.1.1 of matplotlib as provided by the latest Enthought Python
Distribution. When I try to plot a matrix with pyplot.imshow() I get all
kinds of error messages, unless vmin and vmax are specified. Plotting an
array instead works. I.e.:

y=matrix('1 2 3')

imshow(y)  #fails
imshow(y, vmin=1, vmax=3) #works
imshow(array(y)) #works

Is that a bug?

Cheers
-- 
View this message in context: 
http://www.nabble.com/bug-with-imshow%28%29-for-matrix--tp26013317p26013317.html
Sent from the matplotlib - users mailing list archive at Nabble.com.


------------------------------------------------------------------------------
Come build with us! The BlackBerry(R) Developer Conference in SF, CA
is the only developer event you need to attend this year. Jumpstart your
developing skills, take BlackBerry mobile applications to market and stay 
ahead of the curve. Join us from November 9 - 12, 2009. Register now!
http://p.sf.net/sfu/devconference
_______________________________________________
Matplotlib-users mailing list
Matplotlib-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-users

Reply via email to