NumPy 的 fliplr(~)
方法按列反轉元素的順序(水平翻轉)。請注意,此方法不會翻轉位(即將 0 變為 1,將 1 變為 0)。
此方法相當於 np.flip(a, axis=1)
,其中 a
是輸入數組。
參數
1. a
| array-like
輸入數組。維數必須大於 1。
返回值
NumPy 數組,其中輸入元素按列反轉。
例子
考慮以下二維數組:
a = np.array([[1,2,3],[4,5,6],[7,8,9]])
a
array([[1, 2, 3],
[4, 5, 6],
[7, 8, 9]])
要按列反轉元素的順序:
np.fliplr(a)
array([[3, 2, 1],
[6, 5, 4],
[9, 8, 7]])
在這裏,第一列成為最後一列。
相關用法
- Python NumPy flipud方法用法及代碼示例
- Python NumPy floor方法用法及代碼示例
- Python float轉exponential用法及代碼示例
- Python NumPy flatten方法用法及代碼示例
- Python float.is_integer用法及代碼示例
- Python NumPy flat屬性用法及代碼示例
- Python NumPy flatnonzero方法用法及代碼示例
- Python NumPy floor_divide方法用法及代碼示例
- Python float()用法及代碼示例
- Python NumPy float_power方法用法及代碼示例
- Python floating轉binary用法及代碼示例
- Python float構造函數用法及代碼示例
- Python float用法及代碼示例
- Python dict fromkeys()用法及代碼示例
- Python frexp()用法及代碼示例
- Python BeautifulSoup find_next方法用法及代碼示例
- Python functools.wraps用法及代碼示例
- Python functools.singledispatchmethod用法及代碼示例
- Python calendar firstweekday()用法及代碼示例
- Python NumPy full方法用法及代碼示例
- Python Django format_lazy用法及代碼示例
- Python format()用法及代碼示例
- Python NumPy fill_diagonal方法用法及代碼示例
- Python filecmp.cmpfiles()用法及代碼示例
注:本文由純淨天空篩選整理自Isshin Inada大神的英文原創作品 NumPy | fliplr method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。