diff options
author | endolith <endolith@gmail.com> | 2016-06-21 22:33:26 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-06-21 22:33:26 -0400 |
commit | 0327cb2bda8af376e5f624e48a49b86947fcf68e (patch) | |
tree | cff8d27045951f2d21f2b65eebdfeb257380cfa2 /numpy/core/function_base.py | |
parent | 70f50b8cbb1cd09c2dd108abe36ed211b9e0a071 (diff) | |
download | numpy-0327cb2bda8af376e5f624e48a49b86947fcf68e.tar.gz |
DOC: link geomspace from logspace
Diffstat (limited to 'numpy/core/function_base.py')
-rw-r--r-- | numpy/core/function_base.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/numpy/core/function_base.py b/numpy/core/function_base.py index 2b5f597d7..17a36eb4c 100644 --- a/numpy/core/function_base.py +++ b/numpy/core/function_base.py @@ -184,6 +184,7 @@ def logspace(start, stop, num=50, endpoint=True, base=10.0, dtype=None): endpoint may or may not be included. linspace : Similar to logspace, but with the samples uniformly distributed in linear space, instead of log space. + geomspace : Similar to logspace, but with endpoints specified directly. Notes ----- |