diff options
author | Stefan van der Walt <stefan@sun.ac.za> | 2009-03-08 18:21:06 +0000 |
---|---|---|
committer | Stefan van der Walt <stefan@sun.ac.za> | 2009-03-08 18:21:06 +0000 |
commit | 090ce2ad88f775ad0bdc009061457c1ff8b40b74 (patch) | |
tree | 5695f25b1574d98fb3621b5289cccbc48fd210d8 /numpy/lib/function_base.py | |
parent | bb4c141e31484ecc2af21a26cf11d9293c3d7284 (diff) | |
download | numpy-090ce2ad88f775ad0bdc009061457c1ff8b40b74.tar.gz |
Merge reviewed docstrings from editor.
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 |