summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatti Picus <matti.picus@gmail.com>2019-03-01 07:17:56 +0200
committerGitHub <noreply@github.com>2019-03-01 07:17:56 +0200
commita72f061ede7cf2058829668a4f5d110dec265f1c (patch)
treef162fa99ffbe7125d7a996d79591dc5047af8eff
parentc4a840ed97f67cfdc7c5d8a04512cdc86098dff0 (diff)
parent1d901ee669aa1999d074bb26612d8196d8b27dc9 (diff)
downloadnumpy-a72f061ede7cf2058829668a4f5d110dec265f1c.tar.gz
Merge pull request #13058 from euronion/euronion-patch-1
DOC: update docstring in numpy.interp docstring
-rw-r--r--numpy/lib/function_base.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/numpy/lib/function_base.py b/numpy/lib/function_base.py
index b61a64b8e..2a66bdb3a 100644
--- a/numpy/lib/function_base.py
+++ b/numpy/lib/function_base.py
@@ -1292,9 +1292,9 @@ def interp(x, xp, fp, left=None, right=None, period=None):
The x-coordinates at which to evaluate the interpolated values.
xp : 1-D sequence of floats
- The x-coordinates of the data points, must be increasing if argument
- `period` is not specified. Otherwise, `xp` is internally sorted after
- normalizing the periodic boundaries with ``xp = xp % period``.
+ The x-coordinates of the data points, must be strictly increasing if
+ argument `period` is not specified. Otherwise, `xp` is internally sorted
+ after normalizing the periodic boundaries with ``xp = xp % period``.
fp : 1-D sequence of float or complex
The y-coordinates of the data points, same length as `xp`.