当前位置:  开发笔记 > 编程语言 > 正文

matplotlib.pyplot.streamplot中的轴错误

如何解决《matplotlib.pyplot.streamplot中的轴错误》经验,为你挑选了1个好方法。



1> ali_m..:

我怀疑,问题出在你xy数组上.从该streamplot文档:

x,y:1d数组

均匀间隔的网格.

xy坐标的间距不均匀(在y坐标的情况下,它们也是单调递减而不是增加).

为了使用streamplot您绘制数据,您需要将其重新采样到常规2D网格上.例如,您可以使用scipy.interpolate.interp2d:

from scipy.interpolate import interp2d

# regularly spaced grid spanning the domain of x and y 
xi = np.linspace(x.min(), x.max(), x.size)
yi = np.linspace(y.min(), y.max(), y.size)

# bicubic interpolation
uCi = interp2d(x, y, uC)(xi, yi)
vCi = interp2d(x, y, vC)(xi, yi)

plt.streamplot(xi, yi, uCi, vCi)

推荐阅读
无名有名我无名_593
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有