本文簡要介紹 python 語言中 numpy.rollaxis
的用法。
用法:
numpy.rollaxis(a, axis, start=0)
向後滾動指定的軸,直到它位於給定位置。
為了向後兼容,繼續支持此函數,但您應該更喜歡
moveaxis
。moveaxis
函數是在 NumPy 1.11 中添加的。- a: ndarray
輸入數組。
- axis: int
要滾動的軸。其他軸的位置相對於彼此不會改變。
- start: 整數,可選
當
start <= axis
時,軸會回滾,直到它位於該位置。當start > axis
時,軸會滾動,直到它位於該位置之前。默認值 0 會產生 “complete” 滾動。下表說明了如何解釋start
的負值:start
標準化
start
-(arr.ndim+1)
提高
AxisError
-arr.ndim
0
⋮
⋮
-1
arr.ndim-1
0
0
⋮
⋮
arr.ndim
arr.ndim
arr.ndim + 1
提高
AxisError
- res: ndarray
對於 NumPy >= 1.10.0 始終返回 a 的視圖。對於早期的 NumPy 版本,僅當軸的順序更改時才返回 a 的視圖,否則返回輸入數組。
參數:
返回:
例子:
>>> 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)
相關用法
- Python numpy roll用法及代碼示例
- Python numpy roots用法及代碼示例
- Python numpy row_stack用法及代碼示例
- Python numpy rot90用法及代碼示例
- Python numpy recarray.dot用法及代碼示例
- Python numpy random.mtrand.RandomState.wald用法及代碼示例
- Python numpy recarray.itemset用法及代碼示例
- Python numpy random.mtrand.RandomState.multivariate_normal用法及代碼示例
- Python numpy random.standard_exponential用法及代碼示例
- Python numpy recarray.view用法及代碼示例
- Python numpy random.mtrand.RandomState.gumbel用法及代碼示例
- Python numpy random.mtrand.RandomState.multinomial用法及代碼示例
- Python numpy random.rand用法及代碼示例
- Python numpy random.mtrand.RandomState.logistic用法及代碼示例
- Python numpy random.mtrand.RandomState.shuffle用法及代碼示例
- Python numpy random.triangular用法及代碼示例
- Python numpy recarray.tolist用法及代碼示例
- Python numpy recarray.setflags用法及代碼示例
- Python numpy random.noncentral_f用法及代碼示例
- Python numpy recarray.flat用法及代碼示例
- Python numpy random.mtrand.RandomState.poisson用法及代碼示例
- Python numpy recarray用法及代碼示例
- Python numpy recarray.sort用法及代碼示例
- Python numpy random.lognormal用法及代碼示例
- Python numpy random.mtrand.RandomState.seed用法及代碼示例
注:本文由純淨天空篩選整理自numpy.org大神的英文原創作品 numpy.rollaxis。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。