Scipy用一个值插值2D

时间:2014-06-24 16:47:18

标签: python numpy scipy interpolation

我想在Python中插入X,Y,Z并用z返回插值结果X,Y。例如

from scipy.interpolate import interp2d

x = [1, 2, 3, 4, 5]
y = [1, 2, 3, 4, 5]
z = [1, 2, 3, 4, 5]

i = interp2d(x, y, z)
i(1, 2)
Out: array([ 1.5])

所以,这里,interp2d对象取X和Y得到Z.我想给Z得到X和Y.我想我可能需要一个样条函数。

0 个答案:

没有答案