gpt4 book ai didi

python - 在独特的函数调用下重新缩放 Matplotlib imshow 中的 Axis

转载 作者:太空狗 更新时间:2023-10-29 21:47:10 26 4
gpt4 key购买 nike

我写了一个函数模块,它接受两个变量的参数。为了绘制,我有

x, y = pylab.ogrid[0.3:0.9:0.1, 0.:3.5:.5]
z = np.zeros(shape=(np.shape(x)[0], np.shape(y)[1]))

for i in range(len(x)):
for j in range(len(y[0])):
z[i][j] = fancyFunction(x[i][0], y[0][j])

pylab.imshow(z, interpolation="gaussian")

我得到的图像如下: enter image description here

但是当我尝试通过 pylab.imshow(z, interpolation="gaussian", extent =[.3,.9,0.,3.5]) 我明白了

enter image description here

我已经在谷歌上搜索了几个小时,但仍然找不到制作具有不同比例 Axis 的方形图的方法。

谢谢!

最佳答案

使用方面参数:

pylab.imshow(z, interpolation="gaussian", extent = [.3,.9,0.,3.5], aspect='auto')

关于python - 在独特的函数调用下重新缩放 Matplotlib imshow 中的 Axis ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11765025/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com