summaryrefslogtreecommitdiff
path: root/numpy/core/function_base.py
diff options
context:
space:
mode:
authorendolith <endolith@gmail.com>2016-06-21 22:33:26 -0400
committerGitHub <noreply@github.com>2016-06-21 22:33:26 -0400
commit0327cb2bda8af376e5f624e48a49b86947fcf68e (patch)
treecff8d27045951f2d21f2b65eebdfeb257380cfa2 /numpy/core/function_base.py
parent70f50b8cbb1cd09c2dd108abe36ed211b9e0a071 (diff)
downloadnumpy-0327cb2bda8af376e5f624e48a49b86947fcf68e.tar.gz
DOC: link geomspace from logspace
Diffstat (limited to 'numpy/core/function_base.py')
-rw-r--r--numpy/core/function_base.py1
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
-----