summaryrefslogtreecommitdiff
path: root/numpy
diff options
context:
space:
mode:
authorCharles Harris <charlesr.harris@gmail.com>2016-06-21 21:53:03 -0600
committerGitHub <noreply@github.com>2016-06-21 21:53:03 -0600
commitaf75d71330bf9cd58da39f8cbe2177db04a6d29d (patch)
treecff8d27045951f2d21f2b65eebdfeb257380cfa2 /numpy
parent70f50b8cbb1cd09c2dd108abe36ed211b9e0a071 (diff)
parent0327cb2bda8af376e5f624e48a49b86947fcf68e (diff)
downloadnumpy-af75d71330bf9cd58da39f8cbe2177db04a6d29d.tar.gz
Merge pull request #7771 from endolith/patch-1
DOC: link geomspace from logspace
Diffstat (limited to 'numpy')
-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
-----