Open ShantanuKodgirwar opened 4 months ago
For the latest (as of now) SciPy 1.14.0, scipy.interpolate.interp2d is no longer supported and has been deprecated for quite some time now. The aPIE implementation must instead be adapted with RectBivariateSpline or RegularGridInterpolator.
scipy.interpolate.interp2d
RectBivariateSpline
RegularGridInterpolator
For the latest (as of now) SciPy 1.14.0,
scipy.interpolate.interp2d
is no longer supported and has been deprecated for quite some time now. The aPIE implementation must instead be adapted withRectBivariateSpline
orRegularGridInterpolator
.