概述
Matplotlib是Python中的一个库,它是数字的-NumPy库的数学扩展。 Pyplot是Matplotlib模块的基于状态的接口,该模块提供了MATLAB-like接口。可在Pyplot中使用的各种图线图,轮廓图,直方图,散点图,3D图等。
matplotlib.pyplot.waitforbuttonpress()方法
matplotlib库的pyplot模块中的waitforbuttonpress()方法用于阻止与图形交互的调用。
用法:matplotlib.pyplot.waitforbuttonpress(timeout=- 1)
参数:此方法接受下面讨论的以下参数:
timeout:此参数是超时值。
返回值:此方法不返回任何值。
以下示例说明了matplotlib.pyplot中的matplotlib.pyplot.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.pyplot.waitforbuttonpress()
最后
以上就是忧伤板凳为你收集整理的matlab waitfor函数,Python Matplotlib.pyplot.waitforbuttonpress()用法及代码示例的全部内容,希望文章能够帮你解决matlab waitfor函数,Python Matplotlib.pyplot.waitforbuttonpress()用法及代码示例所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
发表评论 取消回复