📜  Python中的 Matplotlib.pyplot.draw()

📅  最后修改于: 2022-05-13 01:55:37.914000             🧑  作者: Mango

Python中的 Matplotlib.pyplot.draw()

Matplotlib是Python中的一个库,它是 NumPy 库的数值数学扩展。 PyplotMatplotlib模块的基于状态的接口,它提供了一个类似 MATLAB 的接口。

matplotlib.pyplot.draw()函数

matplotlib 库的 pyplot 模块中的draw()函数用于重绘当前图形。

下面的示例说明了 matplotlib.pyplot 中的 matplotlib.pyplot.draw()函数:

示例 #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")

输出: