本文简要介绍 python 语言中 numpy.obj2sctype
的用法。
用法:
numpy.obj2sctype(rep, default=None)
返回对象的 Python 类型的标量 dtype 或 NumPy 等效项。
- rep: 任何
返回类型的对象。
- default: 任何,可选
如果给定,则为无法确定类型的对象返回 this。如果未给出,则为这些对象返回 None 。
- dtype: dtype 或 Python 类型
代表的数据类型。
参数:
返回:
例子:
>>> np.obj2sctype(np.int32) <class 'numpy.int32'> >>> np.obj2sctype(np.array([1., 2.])) <class 'numpy.float64'> >>> np.obj2sctype(np.array([1.j])) <class 'numpy.complex128'>
>>> np.obj2sctype(dict) <class 'numpy.object_'> >>> np.obj2sctype('string')
>>> np.obj2sctype(1, default=list) <class 'list'>
相关用法
- Python numpy ones用法及代码示例
- Python numpy ones_like用法及代码示例
- Python numpy ogrid用法及代码示例
- Python numpy outer用法及代码示例
- Python numpy RandomState.standard_exponential用法及代码示例
- Python numpy hamming用法及代码示例
- Python numpy legendre.legint用法及代码示例
- Python numpy chararray.ndim用法及代码示例
- Python numpy chebyshev.chebsub用法及代码示例
- Python numpy chararray.nbytes用法及代码示例
- Python numpy ma.indices用法及代码示例
- Python numpy matrix.A1用法及代码示例
- Python numpy MaskedArray.var用法及代码示例
- Python numpy ma.zeros用法及代码示例
- Python numpy broadcast用法及代码示例
- Python numpy matrix.T用法及代码示例
- Python numpy matrix.I用法及代码示例
- Python numpy MaskedArray.T用法及代码示例
- Python numpy hermite.hermfromroots用法及代码示例
- Python numpy hermite_e.hermediv用法及代码示例
- Python numpy recarray.dot用法及代码示例
- Python numpy random.mtrand.RandomState.wald用法及代码示例
- Python numpy trim_zeros用法及代码示例
- Python numpy chebyshev.chebdiv用法及代码示例
- Python numpy linalg.svd用法及代码示例
注:本文由纯净天空筛选整理自numpy.org大神的英文原创作品 numpy.obj2sctype。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。