scipy.interpolate.

interp2d#

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

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

对于旧版代码,几乎按原样兼容的替换方案是针对规则网格的 RectBivariateSpline,以及针对分散的 2D 数据的 bisplrep/bisplev

对于常规网格,在新代码中使用 RegularGridInterpolator。对于分散数据,首选 LinearNDInterpolatorCloughTocher2DInterpolator

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