diff options
author | Yoshiki Vázquez Baeza <yoshiki.vazquezbaeza@colorado.edu> | 2014-05-04 00:29:37 -0600 |
---|---|---|
committer | Yoshiki Vázquez Baeza <yoshiki.vazquezbaeza@colorado.edu> | 2014-05-04 00:37:17 -0600 |
commit | 31e969b33a5e95f4c5248b725d7a5d3f8956f52b (patch) | |
tree | 2b55951e384830c5fc08f2877e932b1ecdd0b3f5 /numpy | |
parent | a0cf18394d5ce33514fdc37093bd2f65ad4b0dde (diff) | |
download | numpy-31e969b33a5e95f4c5248b725d7a5d3f8956f52b.tar.gz |
DOC/FIX: Fix error in documentation
Remove misleading note about equivalency betwen column_stack and
np.vstack(tup).T.
Fixes #3488
Diffstat (limited to 'numpy')
-rw-r--r-- | numpy/lib/shape_base.py | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/numpy/lib/shape_base.py b/numpy/lib/shape_base.py index 38b928d57..43e98ae3d 100644 --- a/numpy/lib/shape_base.py +++ b/numpy/lib/shape_base.py @@ -287,10 +287,6 @@ def column_stack(tup): -------- hstack, vstack, concatenate - Notes - ----- - This function is equivalent to ``np.vstack(tup).T``. - Examples -------- >>> a = np.array((1,2,3)) |