numpy.rollaxis(a,axis,start=0)[source]¶Roll the specified axis backwards, until it lies in a given position.
This function continues to be supported for backward compatibility, but youshould prefermoveaxis. Themoveaxis function was added in NumPy1.11.
| Parameters: |
|
|---|---|
| Returns: |
|
See also
Examples
>>>a=np.ones((3,4,5,6))>>>np.rollaxis(a,3,1).shape(3, 6, 4, 5)>>>np.rollaxis(a,2).shape(5, 3, 4, 6)>>>np.rollaxis(a,1,4).shape(3, 5, 6, 4)