numpy.dtype.subdtype#

属性

dtype.subdtype#

如果这个 dtype 描述的是一个子数组,则为元组 (item_dtype, shape),否则为 None.

shape 是此数据类型描述的子数组的固定形状,*item_dtype* 是数组的数据类型.

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

参见

dtype.base

示例

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