本文簡要介紹 python 語言中 numpy.array_repr
的用法。
用法:
numpy.array_repr(arr, max_line_width=None, precision=None, suppress_small=None)
返回數組的字符串表示形式。
- arr: ndarray
輸入數組。
- max_line_width: 整數,可選
如果文本長於max_line_width.默認為
numpy.get_printoptions()['linewidth']
.- precision: 整數,可選
浮點精度。默認為
numpy.get_printoptions()['precision']
。- suppress_small: 布爾型,可選
將數字“very close” 以零表示為零;默認為假。非常接近由精度定義:如果精度為 8,例如,小於 5e-9 的數字(絕對值)表示為零。默認為
numpy.get_printoptions()['suppress']
。
- string: str
數組的字符串表示形式。
參數:
返回:
例子:
>>> np.array_repr(np.array([1,2])) 'array([1, 2])' >>> np.array_repr(np.ma.array([0.])) 'MaskedArray([0.])' >>> np.array_repr(np.array([], np.int32)) 'array([], dtype=int32)'
>>> x = np.array([1e-6, 4e-7, 2, 3]) >>> np.array_repr(x, precision=6, suppress_small=True) 'array([0.000001, 0. , 2. , 3. ])'
相關用法
- Python numpy array_equiv用法及代碼示例
- Python numpy array_str用法及代碼示例
- Python numpy array_equal用法及代碼示例
- Python numpy array_split用法及代碼示例
- Python numpy array用法及代碼示例
- Python numpy array2string用法及代碼示例
- Python numpy argpartition用法及代碼示例
- Python numpy arctan用法及代碼示例
- Python numpy arccos用法及代碼示例
- Python numpy around用法及代碼示例
- Python numpy arctan2用法及代碼示例
- Python numpy arctanh用法及代碼示例
- Python numpy arccosh用法及代碼示例
- Python numpy arange用法及代碼示例
- Python numpy argsort用法及代碼示例
- Python numpy arcsinh用法及代碼示例
- Python numpy argmin用法及代碼示例
- Python numpy argmax用法及代碼示例
- Python numpy argwhere用法及代碼示例
- Python numpy arcsin用法及代碼示例
- Python numpy asscalar用法及代碼示例
- Python numpy any用法及代碼示例
- Python numpy ascontiguousarray用法及代碼示例
- Python numpy asarray_chkfinite用法及代碼示例
- Python numpy all用法及代碼示例
注:本文由純淨天空篩選整理自numpy.org大神的英文原創作品 numpy.array_repr。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。