summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorskywalker <65246829+LSchroefl@users.noreply.github.com>2020-05-21 21:53:49 +0200
committerskywalker <65246829+LSchroefl@users.noreply.github.com>2020-05-21 21:53:49 +0200
commit40d95016cd4322530e0aa28a9b4ae86a95eb8d02 (patch)
tree89f0578e8e5e245352a3240e81724da28b167e7a
parent25f64902e9178bf476e2ce002985495ce56a7092 (diff)
downloadnumpy-40d95016cd4322530e0aa28a9b4ae86a95eb8d02.tar.gz
DOC: link np.interp to SciPy's multidimensional interpolation functions (#14154)
-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 2d1adc362..bb6a84795 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