Add rollaxis and moveaxis
See original GitHub issueTop Results From Across the Web
numpy.rollaxis — NumPy v1.24 Manual
The moveaxis function was added in NumPy 1.11. Parameters: andarray. Input array. axisint. The axis to be ...
Read more >NumPy: rollaxis() function - w3resource
The moveaxis function was added in NumPy 1.11. Syntax: numpy.rollaxis(a, source, destination) NumPy manipulation: rollaxis() function.
Read more >Reason why numpy rollaxis is so confusing? - Stack Overflow
NumPy v1.11 and newer includes a new function, moveaxis , that I recommend using instead of rollaxis (disclaimer: I wrote it!). The source...
Read more >[numpy Basic]rollaxis moveaxis swapaxes - Kaggle
Roll the specified axis backwards, until it lies in a given position. This function continues to be supported for backward compatibility, but you...
Read more >cupy.rollaxis — CuPy 11.4.0 documentation
cupy.copyto · cupy.shape · cupy.reshape · cupy.ravel · cupy.moveaxis; cupy.rollaxis; cupy.swapaxes · cupy.transpose · cupy.atleast_1d · cupy.atleast_2d ...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Agreed, see https://github.com/numpy/numpy/issues/9476.
These functions already work on dask arrays, since they are defined in terms of the transpose method:
So we could probably just add appropriate aliases here.