Return the string representation of an array.
Parameters: | arr : ndarray
max_line_width : int
precision : int
suppress_small : bool
|
---|---|
Returns: | string : str
|
Examples
>>> 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)'