diff options
author | Philipp A <flying-sheep@web.de> | 2017-02-22 15:49:38 +0100 |
---|---|---|
committer | Philipp A <flying-sheep@web.de> | 2017-02-22 15:54:29 +0100 |
commit | 5e725ac3d50d1829a866273078e4a634b6b2b2cd (patch) | |
tree | b299ff833d7f3f45f48ac5cbe183b46d59a253ac /numpy/lib/index_tricks.py | |
parent | c5de3222fa801e4a4e425116d4157cf1abb6813f (diff) | |
download | numpy-5e725ac3d50d1829a866273078e4a634b6b2b2cd.tar.gz |
DOC: Added “See Also” section for c_
Diffstat (limited to 'numpy/lib/index_tricks.py')
-rw-r--r-- | numpy/lib/index_tricks.py | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/numpy/lib/index_tricks.py b/numpy/lib/index_tricks.py index 7df51a862..1fd530f33 100644 --- a/numpy/lib/index_tricks.py +++ b/numpy/lib/index_tricks.py @@ -463,8 +463,11 @@ class CClass(AxisConcatenator): useful because of its common occurrence. In particular, arrays will be stacked along their last axis after being upgraded to at least 2-D with 1's post-pended to the shape (column vectors made out of 1-D arrays). - - For detailed documentation, see `r_`. + + See Also + -------- + column_stack : Stack 1-D arrays as columns into a 2-D array. + r_ : For more detailed documentation. Examples -------- |