原文:https://docs.scipy.org/doc/numpy/reference/generated/numpy.rollaxis.html
校对:(虚位以待)
numpy.
rollaxis
(a, axis, start=0)[source]向后滚动指定的轴,直到它位于给定位置。
参数: | a:ndarray
axis:int
start:int,可选
|
---|---|
返回: | res:ndarray
|
例子
>>> 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)