matplotlib.pyplot.draw()函数
Matplotlib是Python中的一个库,它是NumPy库的数值-数学扩展。Pyplot是一个基于状态的Matplotlib模块接口,该模块提供了一个类似matlab的接口。
matplotlib.pyplot.draw()函数
使用matplotlib库pyplot模块中的draw()函数重绘当前图形。
语法:matplotlib.pyplot.draw ()
下面的例子演示了matplotlib.pyplot.draw()函数在matplotlib.pyplot中的作用:
示例1
# Implementation of matplotlib function
import numpy as np
import matplotlib.pyplot as plt
def tellme(s):
plt.title(s, fontsize = 16)
plt.draw()
plt.clf()
plt.setp(plt.gca(), autoscale_on = False)
tellme('matplotlib.pyplot.draw() function Example')
plt.show()
输出:
示例2
# Implementation of matplotlib function
from mpl_toolkits.mplot3d import axes3d
import matplotlib.pyplot as plt
fig = plt.figure()
ax = fig.add_subplot(111, projection ='3d')
X, Y, Z = axes3d.get_test_data(0.1)
ax.plot_wireframe(X, Y, Z, rstride = 5,
cstride = 5)
for angle in range(0, 360):
ax.view_init(30, angle)
plt.draw()
plt.pause(.001)
ax.set_title('matplotlib.pyplot.draw()\
function Example', fontweight ="bold")
输出: