I'm trying to create an image using matplotlib.pyplot.imshow(). However, when I run the program from my console, it doesn't display anything?

This is the code:

import matplotlib.pyplot

myimage = gen_image()

matplotlib.pyplot.gray()
matplotlib.pyplot.imshow(results)

But this shows nothing.

link|improve this question

feedback

2 Answers

up vote 3 down vote accepted

You have to call the show function to actually display anything, like

matplotlib.pyplot.show()

Unfortunately the matplotlib documentation seems to be currently broken, so I can't provide a link.

Note that for interactive plotting one typically uses IPython, which has special support for matplotlib.

By the way, you can do

import matplotlib.pyplot as plt

to make the typing less tedious (this is pretty much the official standard way).

link|improve this answer
feedback

You could try http://fishsoup.net/software/reinteract/

link|improve this answer
Looks similar to SAGE (sagemath.org), which is probably more widespread. – nikow Nov 3 '09 at 23:11
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.