Return an array of zeros with the same shape and type as a given array.
Equivalent to a.copy().fill(0).
Parameters: | a : array_like
|
---|---|
Returns: | out : ndarray
|
See also
Examples
>>> x = np.arange(6)
>>> x = x.reshape((2, 3))
>>> x
array([[0, 1, 2],
[3, 4, 5]])
>>> np.zeros_like(x)
array([[0, 0, 0],
[0, 0, 0]])
>>> y = np.arange(3, dtype=np.float)
>>> y
array([ 0., 1., 2.])
>>> np.zeros_like(y)
array([ 0., 0., 0.])