summaryrefslogtreecommitdiff
path: root/numpy/lib/info.py
diff options
context:
space:
mode:
authorJoseph Fox-Rabinovitz <joseph.r.fox-rabinovitz@nasa.gov>2016-07-11 10:39:23 -0400
committerJoseph Fox-Rabinovitz <joseph.r.fox-rabinovitz@nasa.gov>2016-08-24 12:39:56 -0400
commit54b68dda8b29e3745b6b0da5f1d6a2b53f29e291 (patch)
tree4560f76441f5156ca418752cf26459a4b31ca7a3 /numpy/lib/info.py
parentd92c75b46fa316a7711049c278bfb4d4f11b2349 (diff)
downloadnumpy-54b68dda8b29e3745b6b0da5f1d6a2b53f29e291.tar.gz
BUG: Fixed masked array behavior for scalar inputs to np.ma.atleast_*d
Diffstat (limited to 'numpy/lib/info.py')
-rw-r--r--numpy/lib/info.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/numpy/lib/info.py b/numpy/lib/info.py
index ca1e72397..141df2ace 100644
--- a/numpy/lib/info.py
+++ b/numpy/lib/info.py
@@ -67,9 +67,9 @@ Shape Manipulation
------------------
================ ===================
squeeze Return a with length-one dimensions removed.
-atleast_1d Force arrays to be > 1D
-atleast_2d Force arrays to be > 2D
-atleast_3d Force arrays to be > 3D
+atleast_1d Force arrays to be >= 1D
+atleast_2d Force arrays to be >= 2D
+atleast_3d Force arrays to be >= 3D
vstack Stack arrays vertically (row on row)
hstack Stack arrays horizontally (column on column)
column_stack Stack 1D arrays as columns into 2D array