本文简要介绍 python 语言中 numpy.ndarray.getfield
的用法。
用法:
ndarray.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 ndarray.astype用法及代码示例
- Python numpy ndarray.flat用法及代码示例
- Python numpy ndarray.setflags用法及代码示例
- Python numpy ndarray.setfield用法及代码示例
- Python numpy ndarray.sort用法及代码示例
- Python numpy ndarray.real用法及代码示例
- Python numpy ndarray.strides用法及代码示例
- Python numpy ndarray.itemset用法及代码示例
- Python numpy ndarray.__class_getitem__用法及代码示例
- Python numpy ndarray.partition用法及代码示例
- Python numpy ndarray.transpose用法及代码示例
- Python numpy ndarray.flatten用法及代码示例
- Python numpy ndarray.resize用法及代码示例
- Python numpy ndarray.dtype用法及代码示例
- Python numpy ndarray.imag用法及代码示例
- Python numpy ndarray.dot用法及代码示例
- Python numpy ndarray.size用法及代码示例
- Python numpy ndarray.fill用法及代码示例
- Python numpy ndarray.item用法及代码示例
- Python numpy ndarray.nbytes用法及代码示例
- Python numpy ndarray.tobytes用法及代码示例
- Python numpy ndarray.copy用法及代码示例
- Python numpy ndarray.ctypes用法及代码示例
- Python numpy ndarray.view用法及代码示例
- Python numpy ndarray.shape用法及代码示例
注:本文由纯净天空筛选整理自numpy.org大神的英文原创作品 numpy.ndarray.getfield。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。