diff options
author | Eric Wieser <wieser.eric@gmail.com> | 2017-03-25 22:03:45 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-03-25 22:03:45 +0000 |
commit | b7dc5193f7136f5b09f45c3fb10118556e961e74 (patch) | |
tree | 9b16a4a51be5ed4f11fc3a0fe929fd09f6e0790d | |
parent | 96c9ae8911c74c2ab8f22e2c2b28167c668bc67e (diff) | |
parent | 9e6e74cf3fd7e1daf59b67dfe341ab6d8e51338d (diff) | |
download | numpy-b7dc5193f7136f5b09f45c3fb10118556e961e74.tar.gz |
Merge pull request #8837 from fuglede/patch-2
DOC: Spell out note for `hstack`
-rw-r--r-- | numpy/core/shape_base.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/numpy/core/shape_base.py b/numpy/core/shape_base.py index 32b3d4591..d7fb0dfb3 100644 --- a/numpy/core/shape_base.py +++ b/numpy/core/shape_base.py @@ -265,7 +265,8 @@ def hstack(tup): Notes ----- - Equivalent to ``np.concatenate(tup, axis=1)`` + Equivalent to ``np.concatenate(tup, axis=1)`` if `tup` contains arrays that + are at least 2-dimensional. Examples -------- |