scipy.interpolate.

interp2d#

class scipy.interpolate.interp2d(x, y, z, kind='linear', copy=True, bounds_error=False, fill_value=None)[源代码]#

在 1.14.0 版本中移除: interp2d 已在 SciPy 1.14.0 中移除。

对于遗留代码,几乎与 bug 兼容的替代品是在规则网格上的 RectBivariateSpline,以及用于分散 2D 数据的 bisplrep/bisplev

在新代码中,对于规则网格,请改用 RegularGridInterpolator。对于分散数据,请优先使用 LinearNDInterpolatorCloughTocher2DInterpolator

有关更多详细信息,请参阅 插值过渡指南