|
From: John H. <jdh...@ac...> - 2004-06-16 12:32:32
|
>>>>> "Barry" == Barry Drake <bl...@ad...> writes:
Barry> Ryugan, Thanks. That fixed my problem as well: the graph
Barry> window disappearing after the call to show().
Hi Barry,
import matplotlib
matplotlib.interactive(False)
matplotlib.use("WX")
from matplotlib.matlab import *
plot([1,2,3,4])
show()
Which line is responsible for the fix? And are you using WX or WXAgg?
JDH
|