当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python Matplotlib.pyplot.draw()用法及代码示例


Matplotlib是Python中的一个库,它是数字的-NumPy库的数学扩展。 Pyplot是Matplotlib模块的基于状态的接口,该模块提供了MATLAB-like接口。

matplotlib.pyplot.draw()函数

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")

输出:




相关用法


注:本文由纯净天空筛选整理自SHUBHAMSINGH10大神的英文原创作品 Matplotlib.pyplot.draw() in Python。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。