Python 网格数据 网格网格
在Python中,我想使用 scipy.interpolate.griddata(x,y,z,xi,yi) 插入一些数据。
由于我希望在等间距 XI-YI 网格上的 XY 网格图上得到不等间距的原始数据,因此我必须使用网格网格:
X, Y = numpy.meshgrid([1,2,3], [2,5,6,8])
XI,YI = numpy.meshgrid([1,2,3],[4,5,6,7])
print scipy.interpolate.griddata(X,Y,X**2+Y**2,XI,YI)
不幸的是,相比之下 scipys 的 griddata 似乎不接受矩阵作为 x、y、z 的输入到 matlab 的 griddata 函数。有人提示我如何解决这个问题吗?
in Python I want to interpolate some data using scipy.interpolate.griddata(x,y,z,xi,yi).
Since I want my unequal spaced original data on the X-Y grid map on an equal spaced XI-YI grid I have to use a meshgrid as:
X, Y = numpy.meshgrid([1,2,3], [2,5,6,8])
XI,YI = numpy.meshgrid([1,2,3],[4,5,6,7])
print scipy.interpolate.griddata(X,Y,X**2+Y**2,XI,YI)
Unfortunately it seems as scipys' griddata does not accept matrices as input for x,y,z in contrast to matlab's griddata-function. Does anyone has a hint for me how to solve the problem?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您的情况下正确的调用顺序是
,即您需要将输入数据点转换为 1-d。 (在下一版本的 Scipy 中,这可以修复为在没有
.ravel()
的情况下工作。)The correct call sequence in your case is
I.e., you need to cast the input data points to 1-d. (This could be fixed to work without the
.ravel()
s in the next version of Scipy.)我认为您需要重塑网格,griddata 需要一个带有列形式坐标的点列表:
I think you need to reshape your grids, griddata expects a list of points with coordinates in column form: