📜  Python中的 matplotlib.pyplot.pause()

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

Python中的 matplotlib.pyplot.pause()

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

matplotlib.pyplot.pause()函数:

matplotlib 库的 pyplot 模块中的pause()函数用于暂停间隔秒。

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

示例 #1:

matplotlib.pyplot.pause(interval)

输出:

示例 #2:

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

输出: