本文簡要介紹 python 語言中 numpy.rot90
的用法。
用法:
numpy.rot90(m, k=1, axes=(0, 1))
在軸指定的平麵中將數組旋轉 90 度。
旋轉方向是從第一軸朝向第二軸。
- m: array_like
二維或多維數組。
- k: 整數
陣列旋轉 90 度的次數。
- axes: (2,) array_like:
陣列在軸定義的平麵中旋轉。軸必須不同。
- y: ndarray
m的旋轉視圖。
參數:
返回:
注意:
rot90(m, k=1, axes=(1,0))
是rot90(m, k=1, axes=(0,1))
的反麵rot90(m, k=1, axes=(1,0))
等價於rot90(m, k=-1, axes=(0,1))
例子:
>>> m = np.array([[1,2],[3,4]], int) >>> m array([[1, 2], [3, 4]]) >>> np.rot90(m) array([[2, 4], [1, 3]]) >>> np.rot90(m, 2) array([[4, 3], [2, 1]]) >>> m = np.arange(8).reshape((2,2,2)) >>> np.rot90(m, 1, (1,2)) array([[[1, 3], [0, 2]], [[5, 7], [4, 6]]])
相關用法
- Python numpy roll用法及代碼示例
- Python numpy rollaxis用法及代碼示例
- Python numpy roots用法及代碼示例
- Python numpy row_stack用法及代碼示例
- 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.rot90。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。