brainpy.math.empty_like#

brainpy.math.empty_like(prototype: Union[jax._src.basearray.Array, numpy.ndarray, numpy.bool_, numpy.number, bool, int, float, complex], dtype: Optional[Union[Any, str, numpy.dtype, jax._src.typing.SupportsDType]] = None, shape: Any = None) jax._src.basearray.Array[source]#

Return a new array with the same shape and type as a given array.

LAX-backend implementation of numpy.empty_like().

Because XLA cannot create uninitialized arrays, the JAX version will return an array initialized with zeros.

Original docstring below.

Parameters
  • prototype (array_like) – The shape and data-type of prototype define these same attributes of the returned array.

  • dtype (data-type, optional) – Overrides the data type of the result.

  • shape (int or sequence of ints, optional.) – Overrides the shape of the result. If order=’K’ and the number of dimensions is unchanged, will try to keep order, otherwise, order=’C’ is implied.

Returns

out – Array of uninitialized (arbitrary) data with the same shape and type as prototype.

Return type

ndarray