jax.numpy.array_str — JAX documentation (original) (raw)

jax.numpy.array_str#

jax.numpy.array_str(a, max_line_width=None, precision=None, suppress_small=None)[source]#

Return a string representation of the data in an array.

The data in the array is returned as a single string. This function is similar to array_repr, the difference being that array_repr also returns information on the kind of array and its data type.

Parameters:

Examples

import numpy as np np.array_str(np.arange(3)) '[0 1 2]'