8000 DOC: add vstack, hstack, dstack reference to stack documentation. by aukejw · Pull Request #7191 · numpy/numpy · GitHub
[go: up one dir, main page]

Skip to content

DOC: add vstack, hstack, dstack reference to stack documentation. #7191

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Feb 5, 2016
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions numpy/core/shape_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ def vstack(tup):
--------
stack : Join a sequence of arrays along a new axis.
hstack : Stack arrays in sequence horizontally (column wise).
dstack : Stack arrays in sequence depth wise (along third dimension).
dstack : Stack arrays in sequence depthwise (along third dimension).
concatenate : Join a sequence of arrays along an existing axis.
vsplit : Split array into a list of multiple sub-arrays vertically.
< 87DC span class='blob-code-inner blob-code-marker ' data-code-marker=" ">
Expand Down Expand Up @@ -250,7 +250,7 @@ def hstack(tup):
--------
stack : Join a sequence of arrays along a new axis.
vstack : Stack arrays in sequence vertically (row wise).
dstack : Stack arrays in sequence depth wise (along third axis).
dstack : Stack arrays in sequence depthwise (along third axis).
concatenate : Join a sequence of arrays along an existing axis.
hsplit : Split array along second axis.

Expand Down Expand Up @@ -304,6 +304,9 @@ def stack(arrays, axis=0):
See Also
--------
concatenate : Join a sequence of arrays along an existing axis.
vstack : Stack arrays vertically, along an existing row axis.
hstack : Stack arrays horizontally, along an existing column axis.
dstack : Stack arrays depthwise, along an existing third axis.
split : Split array into a list of multiple sub-arrays of equal size.

Examples
Expand Down
0