diff options
author | Matti Picus <matti.picus@gmail.com> | 2020-05-22 08:33:37 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-22 08:33:37 +0300 |
commit | f9da4870612b1e47e3f7e9a64bf1716081745e2a (patch) | |
tree | 59e6c3940fa1befee2656938480b485281f1d1ff /numpy/lib/function_base.py | |
parent | 66c756ce333dc40120d4dd77b14517c6819cd410 (diff) | |
parent | 735f6e0c8a023ae6cd62f792101f3c631994186c (diff) | |
download | numpy-f9da4870612b1e47e3f7e9a64bf1716081745e2a.tar.gz |
Merge pull request #16332 from LSchroefl/link_SciPy_multidimensional_interpolation
DOC: link np.interp to SciPy's interpolation functions (closes #14154)
Diffstat (limited to 'numpy/lib/function_base.py')
-rw-r--r-- | numpy/lib/function_base.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/numpy/lib/function_base.py b/numpy/lib/function_base.py index cd3545966..48b0a0830 100644 --- a/numpy/lib/function_base.py +++ b/numpy/lib/function_base.py @@ -1332,6 +1332,10 @@ def interp(x, xp, fp, left=None, right=None, period=None): If `xp` or `fp` are not 1-D sequences If `period == 0` + See Also + -------- + scipy.interpolate + Notes ----- The x-coordinate sequence is expected to be increasing, but this is not |