一直在玩 Python 的绘图库,遇到了 matplotlib,它似乎已经过实战测试和证明。但是,我在线程中创建一个简单的情节时遇到了一个问题。
在下面的示例中,虚拟类plotme方法在一个线程中连续运行两次,但在第二次迭代中被卡住/冻结。很可能是一些显而易见的东西,并且与线程本身有关,但到目前为止我还没有发现它。
import matplotlib.pyplot as plt
from numpy import arange, sin, pi
import threading
class Dummy():
def plotme(self, iteration = 1):
print "%ix plotting... " % iteration,
t = arange(0.0, 2.0, 0.01)
s = sin(2*pi*t)
plt.plot(t, s)
plt.xlabel('time (s)')
plt.ylabel('voltage (mV)')
plt.title('About as simple as it gets, folks')
#savefig("test.png") # irrelevant here
plt.close()
def threadme(self, iteration = 1):
thread_plot = threading.Thread(target=self.plotme,
args=(iteration,))
thread_plot.start()
thread_plot.join()
dummy = Dummy()
dummy.threadme(1)
dummy.threadme(2)