diff options
author | mattip <matti.picus@gmail.com> | 2019-03-01 09:05:12 +0200 |
---|---|---|
committer | mattip <matti.picus@gmail.com> | 2019-03-01 09:12:40 +0200 |
commit | 6f1b386e3ae144ba348e420b0fccccd4fc62ce69 (patch) | |
tree | b9e20b01de5223ce962c647f90b15fe8535b9974 /numpy/lib/function_base.py | |
parent | a72f061ede7cf2058829668a4f5d110dec265f1c (diff) | |
download | numpy-6f1b386e3ae144ba348e420b0fccccd4fc62ce69.tar.gz |
DOC: revert #13058 and fix Makefile
Diffstat (limited to 'numpy/lib/function_base.py')
-rw-r--r-- | numpy/lib/function_base.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/numpy/lib/function_base.py b/numpy/lib/function_base.py index 2a66bdb3a..b61a64b8e 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 strictly 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 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`. |