diff options
Diffstat (limited to 'numpy/lib/function_base.py')
-rw-r--r-- | numpy/lib/function_base.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/numpy/lib/function_base.py b/numpy/lib/function_base.py index 4eabba545..b7b1552b0 100644 --- a/numpy/lib/function_base.py +++ b/numpy/lib/function_base.py @@ -43,9 +43,9 @@ def linspace(start, stop, num=50, endpoint=True, retstep=False): Parameters ---------- - start : {float, int} + start : scalar The starting value of the sequence. - stop : {float, int} + stop : scalar The end value of the sequence, unless `endpoint` is set to False. In that case, the sequence consists of all but the last of ``num + 1`` evenly spaced samples, so that `stop` is excluded. Note that the step |