Matplotlib“缩放到矩形”在薄矩形上缩放效果不佳

时间:2018-10-04 12:24:21

标签: python numpy matplotlib

绘制1000x1000正方形时:

import matplotlib.pyplot as plt, numpy as np
A = np.random.random((1000,1000))
plt.imshow(A)
plt.show()

enter image description here

然后单击Zoom to rectangle并选择一个细矩形,输出为“不是非常缩放”:

enter image description here

这可能是因为它试图保持宽高比。如何禁用此功能,并进行缩放以使用maplotlib GUI窗口中的所有可用空间?

1 个答案:

答案 0 :(得分:1)

@DavidG指出,

dummy(){ :; }

解决它:

enter image description here