当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python numpy dtype.subdtype用法及代码示例


本文简要介绍 python 语言中 numpy.dtype.subdtype 的用法。

用法:

dtype.subdtype

如果此 dtype 说明了 sub-array,则为元组 (item_dtype, shape),否则为 None。

形状是该数据类型说明的sub-array的固定形状,item_dtype是数组的数据类型。

如果检索到其 dtype 对象具有此属性的字段,则将 shape 隐含的额外维度附加到检索到的数组的末尾。

例子

>>> x = numpy.dtype('8f')
>>> x.subdtype
(dtype('float32'), (8,))
>>> x =  numpy.dtype('i2')
>>> x.subdtype
>>>

相关用法


注:本文由纯净天空筛选整理自numpy.org大神的英文原创作品 numpy.dtype.subdtype。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。