本文简要介绍 python 语言中 numpy.min_scalar_type
的用法。
用法:
numpy.min_scalar_type(a, /)
对于标量
a
,返回可以保存其值的具有最小大小和最小标量类型的数据类型。对于非标量数组a
,返回未修改的向量的 dtype。浮点值不会降级为整数,复数值不会降级为浮点数。
- a: 标量或类似数组
要找到其最小数据类型的值。
- out: 类型
最小数据类型。
参数:
返回:
注意:
例子:
>>> 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')
相关用法
- Python numpy mintypecode用法及代码示例
- Python numpy minimum用法及代码示例
- Python numpy mixins.NDArrayOperatorsMixin用法及代码示例
- Python numpy ma.indices用法及代码示例
- Python numpy matrix.A1用法及代码示例
- Python numpy ma.zeros用法及代码示例
- Python numpy matrix.T用法及代码示例
- Python numpy matrix.I用法及代码示例
- Python numpy ma.diff用法及代码示例
- Python numpy mat用法及代码示例
- Python numpy ma.mask_rowcols用法及代码示例
- Python numpy ma.where用法及代码示例
- Python numpy ma.zeros_like用法及代码示例
- Python numpy mgrid用法及代码示例
- Python numpy ma.notmasked_contiguous用法及代码示例
- Python numpy ma.concatenate用法及代码示例
- Python numpy ma.apply_along_axis用法及代码示例
- Python numpy matrix.partition用法及代码示例
- Python numpy ma.compress_rowcols用法及代码示例
- Python numpy matrix.transpose用法及代码示例
- Python numpy ma.vstack用法及代码示例
- Python numpy ma.atleast_3d用法及代码示例
- Python numpy ma.count用法及代码示例
- Python numpy matrix.itemsize用法及代码示例
- Python numpy ma.fix_invalid用法及代码示例
注:本文由纯净天空筛选整理自numpy.org大神的英文原创作品 numpy.min_scalar_type。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。