使用python中的matplotlib 画图,show后关闭窗口,继续运行命令 在用python中的matplotlib 画图时,show()函数总是要放在最后,且它阻止命令继续往下运行,直到1.0.1版本才支持多个show()的使用.想在显示图像后继续运行相关的处理命令,或者显示一副图像后关闭它,再显示第二幅图像.如下办法: 首先搜索到:plt.close() will close current instance.plt.close(2) will close figure 2plt.cl…
http://blog.csdn.net/pipisorry/article/details/40005163 Matplotlib.pyplot画图实例 {使用pyplot模块} matplotlib绘制直线.条形/矩形区域 import numpy as np import matplotlib.pyplot as plt t , , .01) s = np.sin(2 * np.pi * t) plt.plot(t,s) # draw a thick red hline at y=0 th…