brainpy.math.zeros#

brainpy.math.zeros(shape: Any, dtype: Optional[Union[Any, str, numpy.dtype, jax._src.typing.SupportsDType]] = None) jax._src.basearray.Array[source]#

Return a new array of given shape and type, filled with zeros.

LAX-backend implementation of numpy.zeros().

Original docstring below.

Parameters
  • shape (int or tuple of ints) – Shape of the new array, e.g., (2, 3) or 2.

  • dtype (data-type, optional) – The desired data-type for the array, e.g., numpy.int8. Default is numpy.float64.

Returns

out – Array of zeros with the given shape, dtype, and order.

Return type

ndarray