Skip to content

Commit 814d27b

Browse files
committed
Update docstring of xp keyword in dpnp.interp
1 parent 78597f9 commit 814d27b

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

dpnp/dpnp_iface_mathematical.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2800,11 +2800,11 @@ def interp(x, xp, fp, left=None, right=None, period=None):
28002800
to evaluate the interpolated values.
28012801
28022802
xp : {dpnp.ndarray, usm_ndarray}
2803-
Input 1-D array, expected to have a real-valued
2804-
floating-point data type. The x-coordinates of the data points,
2805-
must be increasing if argument `period` is not specified.
2806-
Otherwise, `xp` is internally sorted after normalizing
2807-
the periodic boundaries with ``xp = xp % period``.
2803+
Input 1-D array, expected to have a real-valued floating-point data
2804+
type. The x-coordinates of the data points, must be strictly increasing
2805+
if argument `period` is not specified. Otherwise, `xp` is internally
2806+
sorted after normalizing the periodic boundaries with
2807+
:math:`xp = xp % period`.
28082808
28092809
fp : {dpnp.ndarray, usm_ndarray}
28102810
Input 1-D array. The y-coordinates of the data points,

0 commit comments

Comments
 (0)