【发布时间】:2012-01-23 18:01:12
【问题描述】:
我正在寻找允许我在脚本运行时更新轴的方法,但是我找不到它。例如:
import matplotlib.pyplot as plt
x = (1,2)
y = (1,2)
plt.plot(x,y, 'r-')
plt.show()
#here during run of program I want to clear axis with help of plt.cla() and update it
#new one
# x = (2,4)
# y = (2,4)
#plt.plot(x,y, 'b-')
【问题讨论】:
标签: numpy matplotlib ipython