diff options
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 |