本文簡要介紹 python 語言中 numpy.mintypecode
的用法。
用法:
numpy.mintypecode(typechars, typeset='GDFgdf', default='d')
返回 minimum-size 類型的字符,給定類型可以安全地轉換為該字符。
返回的類型字符必須表示最小大小的 dtype,以便返回類型的數組可以處理來自 typechars 中所有類型數組的數據(或者如果 typechars 是一個數組,那麽它的 dtype.char)。
- typechars: str 或 數組 列表
如果是字符串列表,則每個字符串應代表一個 dtype。如果 數組,則使用數組 dtype 的字符表示。
- typeset: str 或 str 列表,可選
從中選擇返回字符的字符集。默認設置為“GDFgdf”。
- default: str,可選
默認字符,如果 typechars 中沒有任何字符與排版中的字符匹配,則返回此字符。
- typechar: str
表示找到的minimum-size 類型的字符。
參數:
返回:
例子:
>>> np.mintypecode(['d', 'f', 'S']) 'd' >>> x = np.array([1.1, 2-3.j]) >>> np.mintypecode(x) 'D'
>>> np.mintypecode('abceh', default='G') 'G'
相關用法
- Python numpy minimum用法及代碼示例
- Python numpy min_scalar_type用法及代碼示例
- 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.mintypecode。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。