8000 DOC: Improve see-also for `stack` by akx · Pull Request #16249 · numpy/numpy · GitHub
[go: up one dir, main page]

Skip to content

DOC: Improve see-also for stack #16249

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

Closed
wants to merge 1 commit into from
Closed
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
6 changes: 6 additions & 0 deletions numpy/core/shape_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -387,6 +387,12 @@ def stack(arrays, axis=0, out=None):
concatenate : Join a sequence of arrays along an existing axis.
split : Split array into a list of multiple sub-arrays of equal size.
block : Assemble arrays from blocks.
dsplit : Split array into multiple sub-arrays along the 3rd axis (depth-wise).
dstack : Stack arrays in sequence depth wise (along third dimension).
hsplit : Split array into multiple sub-arrays horizontally (column-wise).
hstack : Stack arrays in sequence horizontally (column wise).
vsplit : Split array into multiple sub-arrays vertically (row wise).
vstack : Stack arrays in sequence vertically (row wise).

Examples
--------
Expand Down
0