matplotlib.pyplot.pause()函数
Matplotlib是Python中的一个库,它是NumPy库的数值-数学扩展。Pyplot是一个基于状态的Matplotlib模块接口,该模块提供了一个类似matlab的接口。
matplotlib.pyplot.pause()函数:
matplotlib库的pyplot模块中的pause()函数用于暂停interval秒。
语法:
matplotlib.pyplot.pause(interval)
参数:此方法不接受任何参数。
返回值:此方法不返回任何值。
下面的例子演示了matplotlib.pyplot.pause()函数在matplotlib.pyplot中的作用:
示例1
# Implementation of matplotlib function
import numpy as np
import matplotlib.pyplot as plt
np.random.seed(19)
data = np.random.random((5, 10, 10))
for i in range(len(data)):
plt.cla()
plt.title('matplotlib.pyplot.pause() function Example\n\n Window {}'.format(i), fontweight ="bold")
plt.imshow(data[i])
plt.pause(0.1)
输出:
示例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.pause() function Example', fontweight ="bold")
输出: