|
From: dmitrey <dmi...@sc...> - 2008-09-21 21:17:29
|
Hi all,
how to close (complitly destroy) pylab figure?
The feature is highly required for my module "openopt".
I expected something like this will work but it doesn't
from pylab import *
ion()
plot([1, 2, 3, 4], [1, 2, 3, 4])
draw()
# optional: ioff(); doesn't help as well
close('all')
Thank you in advance,
Dmitrey.
|