Re: [Matplotlib-users] Fast imshow plotting

2009-05-04 Thread Joey Wilson
e; what you > want here is draw(). > > Eric > > > > --- >> >> Note, interpolation='nearest' can be faster than interpolation=None if >> your default interpolation is set to bicubic (which it probably is) >> >>

[Matplotlib-users] Fast imshow plotting

2009-05-02 Thread Joey Wilson
I am creating a script that generates images and displays them to the screen in real time. I created the following simple script: __ #!/usr/bin/env python from pylab import * from scipy import * for k in range(1,1): img = standard_normal((40,40)) imshow(img,