diff options
author | skywalker <65246829+LSchroefl@users.noreply.github.com> | 2020-05-21 21:53:49 +0200 |
---|---|---|
committer | skywalker <65246829+LSchroefl@users.noreply.github.com> | 2020-05-21 21:53:49 +0200 |
commit | 40d95016cd4322530e0aa28a9b4ae86a95eb8d02 (patch) | |
tree | 89f0578e8e5e245352a3240e81724da28b167e7a /numpy/lib/function_base.py | |
parent | 25f64902e9178bf476e2ce002985495ce56a7092 (diff) | |
download | numpy-40d95016cd4322530e0aa28a9b4ae86a95eb8d02.tar.gz |
DOC: link np.interp to SciPy's multidimensional interpolation functions (#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 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 |