summaryrefslogtreecommitdiff
path: root/numpy/core/function_base.py
diff options
context:
space:
mode:
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
-----