On this page
numpy.ndarray.fill
ndarray.fill(value)
-
Fill the array with a scalar value.
Parameters: value : scalar
All elements of
a
will be assigned this value.Examples
>>> a = np.array([1, 2]) >>> a.fill(0) >>> a array([0, 0]) >>> a = np.empty(2) >>> a.fill(1) >>> a array([ 1., 1.])
© 2008–2017 NumPy Developers
Licensed under the NumPy License.
https://docs.scipy.org/doc/numpy-1.13.0/reference/generated/numpy.ndarray.fill.html