本文簡要介紹 python 語言中 numpy.recarray.getfield
的用法。
用法:
recarray.getfield(dtype, offset=0)
以特定類型返回給定數組的字段。
字段是具有給定數據類型的數組數據的視圖。視圖中的值由給定類型和當前數組的偏移量(以字節為單位)確定。偏移量需要使視圖 dtype 適合數組 dtype;例如,一個 dtype complex128 數組有 16 字節的元素。如果使用 32 位整數(4 個字節)進行查看,則偏移量需要在 0 到 12 個字節之間。
- dtype: str 或 dtype
視圖的數據類型。視圖的 dtype 大小不能大於數組本身的大小。
- offset: int
在開始元素視圖之前要跳過的字節數。
參數:
例子:
>>> x = np.diag([1.+1.j]*2) >>> x[1, 1] = 2 + 4.j >>> x array([[1.+1.j, 0.+0.j], [0.+0.j, 2.+4.j]]) >>> x.getfield(np.float64) array([[1., 0.], [0., 2.]])
通過選擇 8 個字節的偏移量,我們可以為我們的視圖選擇數組的複雜部分:
>>> x.getfield(np.float64, offset=8) array([[1., 0.], [0., 4.]])
相關用法
- Python numpy recarray.dot用法及代碼示例
- Python numpy recarray.itemset用法及代碼示例
- Python numpy recarray.view用法及代碼示例
- Python numpy recarray.tolist用法及代碼示例
- Python numpy recarray.setflags用法及代碼示例
- Python numpy recarray.flat用法及代碼示例
- Python numpy recarray.sort用法及代碼示例
- Python numpy recarray.astype用法及代碼示例
- Python numpy recarray.itemsize用法及代碼示例
- Python numpy recarray.tostring用法及代碼示例
- Python numpy recarray.flatten用法及代碼示例
- Python numpy recarray.item用法及代碼示例
- Python numpy recarray.ndim用法及代碼示例
- Python numpy recarray.byteswap用法及代碼示例
- Python numpy recarray.size用法及代碼示例
- Python numpy recarray.T用法及代碼示例
- Python numpy recarray.nbytes用法及代碼示例
- Python numpy recarray.fill用法及代碼示例
- Python numpy recarray.strides用法及代碼示例
- Python numpy recarray.resize用法及代碼示例
- Python numpy recarray.copy用法及代碼示例
- Python numpy recarray.newbyteorder用法及代碼示例
- Python numpy recarray.transpose用法及代碼示例
- Python numpy recarray.partition用法及代碼示例
- Python numpy recarray.tobytes用法及代碼示例
注:本文由純淨天空篩選整理自numpy.org大神的英文原創作品 numpy.recarray.getfield。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。