本文简要介绍 python 语言中 numpy.dtype.flags
的用法。
用法:
dtype.flags
Bit-flags 说明如何解释此数据类型。
Bit-masks 已在
numpy.core.multiarray
作为常数ITEM_HASOBJECT,LIST_PICKLE,ITEM_IS_POINTER,NEEDS_INIT,NEEDS_PYAPI,USE_GETITEM,USE_SETITEM。这些标志的完整解释位于 C-API 文档中;它们对于用户定义的数据类型非常有用。以下示例演示了对此特定 dtype 的操作需要 Python C-API。
例子:
>>> x = np.dtype([('a', np.int32, 8), ('b', np.float64, 6)]) >>> x.flags 16 >>> np.core.multiarray.NEEDS_PYAPI 16
相关用法
- Python numpy dtype.fields用法及代码示例
- Python numpy dtype.isbuiltin用法及代码示例
- Python numpy dtype.shape用法及代码示例
- Python numpy dtype.ndim用法及代码示例
- Python numpy dtype.alignment用法及代码示例
- Python numpy dtype.names用法及代码示例
- Python numpy dtype.__class_getitem__用法及代码示例
- Python numpy dtype.subdtype用法及代码示例
- Python numpy dtype.descr用法及代码示例
- Python numpy dtype.kind用法及代码示例
- Python numpy dtype.metadata用法及代码示例
- Python numpy dtype.newbyteorder用法及代码示例
- Python numpy dtype.char用法及代码示例
- Python numpy dtype.base用法及代码示例
- Python numpy dtype.byteorder用法及代码示例
- Python numpy dtype.num用法及代码示例
- Python numpy dtype.name用法及代码示例
- Python numpy dtype.itemsize用法及代码示例
- Python numpy dtype用法及代码示例
- Python numpy diagonal用法及代码示例
- Python numpy divmod用法及代码示例
- Python numpy diagflat用法及代码示例
- Python numpy delete用法及代码示例
- Python numpy dec.setastest用法及代码示例
- Python numpy datetime_as_string用法及代码示例
注:本文由纯净天空筛选整理自numpy.org大神的英文原创作品 numpy.dtype.flags。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。