Re: [Matplotlib-users] Fast imshow plotting
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
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,