本文简要介绍 python 语言中 numpy.sctype2char
的用法。
用法:
numpy.sctype2char(sctype)
返回标量 dtype 的字符串表示形式。
- sctype: 标量 dtype 或对象
如果是标量数据类型,则返回相应的字符串字符。如果是对象,
sctype2char
尝试推断其标量类型,然后返回相应的字符串字符。
- typechar: str
标量类型对应的字符串字符。
- ValueError
如果 sctype 是无法推断其类型的对象。
参数:
返回:
抛出:
例子:
>>> for sctype in [np.int32, np.double, np.complex_, np.string_, np.ndarray]: ... print(np.sctype2char(sctype)) l # may vary d D S O
>>> x = np.array([1., 2-1.j]) >>> np.sctype2char(x) 'D' >>> np.sctype2char(list) 'O'
相关用法
- Python numpy scimath.log用法及代码示例
- Python numpy scimath.logn用法及代码示例
- Python numpy scimath.log2用法及代码示例
- Python numpy scimath.arccos用法及代码示例
- Python numpy scimath.log10用法及代码示例
- Python numpy scimath.arctanh用法及代码示例
- Python numpy scimath.sqrt用法及代码示例
- Python numpy scimath.power用法及代码示例
- Python numpy scimath.arcsin用法及代码示例
- Python numpy searchsorted用法及代码示例
- Python numpy shape用法及代码示例
- Python numpy signbit用法及代码示例
- Python numpy setdiff1d用法及代码示例
- Python numpy seterr用法及代码示例
- Python numpy sort用法及代码示例
- Python numpy square用法及代码示例
- Python numpy std用法及代码示例
- Python numpy sum用法及代码示例
- Python numpy spacing用法及代码示例
- Python numpy seterrobj用法及代码示例
- Python numpy squeeze用法及代码示例
- Python numpy shares_memory用法及代码示例
- Python numpy s_用法及代码示例
- Python numpy swapaxes用法及代码示例
- Python numpy show_config用法及代码示例
注:本文由纯净天空筛选整理自numpy.org大神的英文原创作品 numpy.sctype2char。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。