numpy.min_scalar_type#

numpy.min_scalar_type(a, /)#

对于标量 a,返回可以容纳其值的最小大小和最小标量类型的数据类型.对于非标量数组 a,返回向量的 dtype 不变.

浮点值不会降级为整数,复数值也不会降级为浮点数.

参数:
a标量或类数组

要找到其最小数据类型的值.

返回:
outdtype

最小的数据类型.

备注

在 1.6.0 版本加入.

示例

>>> import numpy as np
>>> np.min_scalar_type(10)
dtype('uint8')
>>> np.min_scalar_type(-260)
dtype('int16')
>>> np.min_scalar_type(3.1)
dtype('float16')
>>> np.min_scalar_type(1e50)
dtype('float64')
>>> np.min_scalar_type(np.arange(4,dtype='f8'))
dtype('float64')