Emmanuel Favre-Nicolin wrote:
> Hi,
>
> I can plot only one time in windows. The second time, the window
> appears without the tools and when I click on the windows it become
> white and freezes. Here is a code :
>
> from pylab import *
> x=arange(5)
> y=x*x
> plot(x,y)
> show()
> plot(x,y)
> sho
Hi,
I can plot only one time in windows. The second time, the window appears
without the tools and when I click on the windows it become white and
freezes. Here is a code :
from pylab import *
x=arange(5)
y=x*x
plot(x,y)
show()
plot(x,y)
show()
---