numpy.dtype.base#

属性

dtype.base#

返回子数组基本元素的数据类型,无论其维度或形状如何。

示例

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