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


Python Matplotlib.figure.Figure.waitforbuttonpress()用法及代码示例


Matplotlib是Python中的一个库,它是数字的-NumPy库的数学扩展。 Figure模块提供了顶层Artist,即Figure,其中包含所有绘图元素。此模块用于控制所有图元的子图和顶层容器的默认间距。

matplotlib.figure.Figure.waitforbuttonpress()方法

matplotlib库的waitforbuttonpress()方法图形模块用于阻止与图形交互的调用。

用法: waitforbuttonpress(self, timeout=-1)


参数:此方法接受下面讨论的以下参数:

  • timeout:此参数是超时值。

返回值:此方法不返回任何值。

以下示例说明了matplotlib.figure中的matplotlib.figure.Figure.waitforbuttonpress()函数:

范例1:

# Implementation of matplotlib function 
import numpy as np 
import matplotlib.pyplot as plt 
  
for ite in range(2):
    x = np.linspace(-2, 6, 100) 
    y = (ite + 1)*x 
  
    fig = plt.figure() 
    ax = fig.subplots() 
    ax.plot(x, y, '-b') 
  
    fig.suptitle("""matplotlib.figure.Figure.waitforbuttonpress() 
    function Example\n\n""", fontweight ="bold") 
  
    w = fig.waitforbuttonpress() 
    print("Result after", ite, "click", w) 
  
    fig.show()

输出:

python-matplotlib-waitforbuttonpress-1

python-matplotlib-wairforbuttonpress-2

范例2:

# Implementation of matplotlib function 
import numpy as np 
import matplotlib.cm as cm 
import matplotlib.mlab as mlab 
import matplotlib.pyplot as plt 
  
fig = plt.figure() 
ax = fig.subplots() 
  
def tellme(s):
      
    fig.suptitle(s, fontweight ="bold") 
    fig.canvas.draw() 
    renderer = fig.canvas.renderer 
    fig.draw(renderer) 
  
fig.clf() 
ax.axis([-1., 1., -1., 1.]) 
plt.setp(plt.gca(), autoscale_on = False) 
  
tellme("""matplotlib.figure.Figure.waitforbuttonpress() 
    function Example\n\n""") 
  
w = fig.waitforbuttonpress() 
print("Result after click:", w) 
fig.show()

输出:

python-matplotlib-waitforbuttonpress-3

python-matplotlib-waitforbuttonpress-4




相关用法


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