Movatterモバイル変換


[0]ホーム

URL:


Skip to main content
Ctrl+K
JAX  documentation - Home

jax.numpy.array_str

Contents

jax.numpy.array_str#

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

Return a string representation of the data in an array.

The data in the array is returned as a single string. This function issimilar toarray_repr, the difference being thatarray_repr alsoreturns information on the kind of array and its data type.

Parameters:
  • a (ndarray) – Input array.

  • max_line_width (int,optional) – Inserts newlines if text is longer thanmax_line_width.Defaults tonumpy.get_printoptions()['linewidth'].

  • precision (int,optional) – Floating point precision.Defaults tonumpy.get_printoptions()['precision'].

  • suppress_small (bool,optional) – Represent numbers “very close” to zero as zero; default is False.Very close is defined by precision: if the precision is 8, e.g.,numbers smaller (in absolute value) than 5e-9 are represented aszero.Defaults tonumpy.get_printoptions()['suppress'].

See also

array2string,array_repr,set_printoptions

Examples

>>>importnumpyasnp>>>np.array_str(np.arange(3))'[0 1 2]'
Contents

[8]ページ先頭

©2009-2025 Movatter.jp