summaryrefslogtreecommitdiff
path: root/numpy/core
diff options
context:
space:
mode:
authorRalf Gommers <ralf.gommers@googlemail.com>2011-03-30 18:30:58 +0200
committerRalf Gommers <ralf.gommers@googlemail.com>2011-03-30 18:30:58 +0200
commitd8b1b5a3a0e6a80256e1be3e652ed84a73432b24 (patch)
tree41a949ae9b026460fe63b8a085114bdcb0631d5f /numpy/core
parent2788f53c283d212030dc2fdaa97d494cabf4a640 (diff)
downloadnumpy-d8b1b5a3a0e6a80256e1be3e652ed84a73432b24.tar.gz
DOC: correct note about correspondence vstack and concatenate. Closes #1446.
Diffstat (limited to 'numpy/core')
-rw-r--r--numpy/core/shape_base.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/numpy/core/shape_base.py b/numpy/core/shape_base.py
index 15f188792..13eadd988 100644
--- a/numpy/core/shape_base.py
+++ b/numpy/core/shape_base.py
@@ -187,10 +187,10 @@ def vstack(tup):
concatenate : Join a sequence of arrays together.
vsplit : Split array into a list of multiple sub-arrays vertically.
-
Notes
-----
- Equivalent to ``np.concatenate(tup, axis=0)``
+ Equivalent to ``np.concatenate(tup, axis=0)`` if `tup` contains arrays that
+ are at least 2-dimensional.
Examples
--------