summaryrefslogtreecommitdiff
path: root/numpy/lib/function_base.py
diff options
context:
space:
mode:
authorMatti Picus <matti.picus@gmail.com>2020-05-22 08:33:37 +0300
committerGitHub <noreply@github.com>2020-05-22 08:33:37 +0300
commitf9da4870612b1e47e3f7e9a64bf1716081745e2a (patch)
tree59e6c3940fa1befee2656938480b485281f1d1ff /numpy/lib/function_base.py
parent66c756ce333dc40120d4dd77b14517c6819cd410 (diff)
parent735f6e0c8a023ae6cd62f792101f3c631994186c (diff)
downloadnumpy-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.py4
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