diff options
author | Joseph Fox-Rabinovitz <joseph.r.fox-rabinovitz@nasa.gov> | 2016-07-11 10:39:23 -0400 |
---|---|---|
committer | Joseph Fox-Rabinovitz <joseph.r.fox-rabinovitz@nasa.gov> | 2016-08-24 12:39:56 -0400 |
commit | 54b68dda8b29e3745b6b0da5f1d6a2b53f29e291 (patch) | |
tree | 4560f76441f5156ca418752cf26459a4b31ca7a3 /numpy/lib/info.py | |
parent | d92c75b46fa316a7711049c278bfb4d4f11b2349 (diff) | |
download | numpy-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.py | 6 |
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 |