📜  Python中的 Matplotlib.pyplot.get_current_fig_manager()

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

Python中的 Matplotlib.pyplot.get_current_fig_manager()

Matplotlib是Python中的一个库,它是 NumPy 库的数值数学扩展。 Pyplot是 Matplotlib 模块的基于状态的接口,它提供了一个类似 MATLAB 的接口。在 Pyplot 中可以使用各种图,包括线图、等高线图、直方图、散点图、3D 图等。

matplotlib.pyplot.get_current_fig_manager() 方法

matplotlib库的pyplot模块中的get_current_fig_manager()方法用于获取当前图形的图形管理器。

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

示例 1:

# Implementation of matplotlib function
import matplotlib.pyplot as plt
import numpy as np
          
  
X = np.arange(-10, 10, 0.5)
Y = np.arange(-10, 10, 0.5)
U, V = np.meshgrid(X, Y)
      
fig, ax = plt.subplots()
ax.quiver(X, Y, U, V)
ax.invert_xaxis() 
  
w = plt.get_current_fig_manager()
    
print("Value Return by get_current_fig_manager():")
print(w)
  
fig.suptitle('matplotlib.pyplot.get_current_fig_manager() \
function Example', fontweight ="bold") 
  
plt.show()

输出:

示例 2:

# Implementation of matplotlib function  
import numpy as np  
import matplotlib.pyplot as plt  
    
    
xx = np.random.rand(16, 30)  
        
fig, ax = plt.subplots()  
        
m = ax.pcolor(xx)  
m.set_zorder(-20)
  
w = plt.get_current_fig_manager()
    
print("Value Return by get_current_fig_manager():")
print(w)
     
fig.suptitle('matplotlib.pyplot.get_current_fig_manager()\
 function Example', fontweight ="bold") 
  
plt.show()

输出: