本文简要介绍 python 语言中 numpy.maximum_sctype
的用法。
用法:
numpy.maximum_sctype(t)
返回与输入相同类型的最高精度标量类型。
- out: 类型
同类最高精度的数据类型(numpy.dtype.kind) 作为t.
参数:
返回:
例子:
>>> np.maximum_sctype(int) <class 'numpy.int64'> >>> np.maximum_sctype(np.uint8) <class 'numpy.uint64'> >>> np.maximum_sctype(complex) <class 'numpy.complex256'> # may vary
>>> np.maximum_sctype(str) <class 'numpy.str_'>
>>> np.maximum_sctype('i2') <class 'numpy.int64'> >>> np.maximum_sctype('f4') <class 'numpy.float128'> # may vary
相关用法
- Python numpy maximum用法及代码示例
- 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 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用法及代码示例
- Python numpy ma.mean用法及代码示例
- Python numpy ma.argmax用法及代码示例
- Python numpy matrix.newbyteorder用法及代码示例
注:本文由纯净天空筛选整理自numpy.org大神的英文原创作品 numpy.maximum_sctype。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。