當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Python numpy array_repr用法及代碼示例


本文簡要介紹 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.      ])'

相關用法


注:本文由純淨天空篩選整理自numpy.org大神的英文原創作品 numpy.array_repr。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。