@@ -3906,7 +3906,7 @@ def interp(
3906
3906
- Methods {"linear", "nearest", "zero", "slinear", "quadratic", "cubic", "quintic", "polynomial"}
3907
3907
use :py:class:`scipy.interpolate.interp1d`, unless conditions permit the use of :py:class:`numpy.interp`
3908
3908
(as in the case of `method='linear'` for 1D data).
3909
- - If `method='polynomial'`, the `order` keyword argument must also be provided. In this case,
3909
+ - If `method='polynomial'`, the `order` keyword argument must also be provided. In this case,
3910
3910
:py:class:`scipy.interpolate.interp1d` is called with `kind=order`.
3911
3911
3912
3912
3. **Special interpolants for interpolation along one dimension of N-dimensional data (N ≥ 1)**
@@ -3915,7 +3915,7 @@ def interp(
3915
3915
- `"barycentric"`: :py:class:`scipy.interpolate.BarycentricInterpolator`
3916
3916
- `"krogh"`: :py:class:`scipy.interpolate.KroghInterpolator`
3917
3917
- `"akima"` or `"makima"`: :py:class:`scipy.interpolate.Akima1dInterpolator`
3918
- (`makima` is handled by passing `makima` to `method`).
3918
+ (`makima` is handled by passing `makima` to `method`).
3919
3919
3920
3920
4. **Interpolation along multiple dimensions of multi-dimensional data**
3921
3921
- Uses :py:func:`scipy.interpolate.interpn` for methods {"linear", "nearest", "slinear",
@@ -4208,16 +4208,16 @@ def interp_like(
4208
4208
- Methods {"linear", "nearest", "zero", "slinear", "quadratic", "cubic", "quintic", "polynomial"}
4209
4209
use :py:class:`scipy.interpolate.interp1d`, unless conditions permit the use of :py:class:`numpy.interp`
4210
4210
(as in the case of `method='linear'` for 1D data).
4211
- - If `method='polynomial'`, the `order` keyword argument must also be provided. In this case,
4212
- :py:class:`scipy.interpolate.interp1d` is called with `kind=order`.
4211
+ - If `method='polynomial'`, the `order` keyword argument must also be provided. In this case,
4212
+ :py:class:`scipy.interpolate.interp1d` is called with `kind=order`.
4213
4213
4214
4214
3. **Special interpolants for interpolation along one dimension of N-dimensional data (N ≥ 1)**
4215
4215
- Depending on the `method`, the following interpolants from :py:class:`scipy.interpolate` are used:
4216
4216
- `"pchip"`: :py:class:`scipy.interpolate.PchipInterpolator`
4217
4217
- `"barycentric"`: :py:class:`scipy.interpolate.BarycentricInterpolator`
4218
4218
- `"krogh"`: :py:class:`scipy.interpolate.KroghInterpolator`
4219
4219
- `"akima"` or `"makima"`: :py:class:`scipy.interpolate.Akima1dInterpolator`
4220
- (`makima` is handled by passing `makima` to `method`).
4220
+ (`makima` is handled by passing `makima` to `method`).
4221
4221
4222
4222
4. **Interpolation along multiple dimensions of multi-dimensional data**
4223
4223
- Uses :py:func:`scipy.interpolate.interpn` for methods {"linear", "nearest", "slinear",
0 commit comments