-
Notifications
You must be signed in to change notification settings - Fork 320
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Add dstack, vstack, and hstack #667
Comments
What we call Any thoughts on renaming the existing |
It sounds good to me - it would also help for issues like #650. |
@jturner314 Sounds good |
Seems like @bluss is a bit busy so could one of you guys @LukeMathWalker @jturner314 please take a look at the PR changes? Thanks a lot! |
New user of ndarray here - coming from python, I expected Also, is there a |
No, that’s all in #735, which appears to have stalled. |
Looks like the name has been changed, but documentation in https://docs.rs/ndarray/0.14.0/ndarray/doc/ndarray_for_numpy_users/index.html still refer to |
That document issue should already be fixed in master, which is released as 0.15 soon. The present feature request is closed - it was fixed already in 0.14. |
In the vein of #75 which added
stack
, it would be really nice if there were a way to easily convert e.g.Vec<Array2<D>>
into anArray3<D>
. Current I'm doing something like this:It would be nice to not have to do this manually, it would also be clearer to people who are used to numpy (IMO).
I think this is equivalent to relaxing the restriction that
axis
inndarray::stack
has to be an existing axis.The text was updated successfully, but these errors were encountered: