numpy / 1.22.0 / reference / generated / numpy.ma.maskedarray.fill.html /

numpy.ma.MaskedArray.fill

method

ma.MaskedArray. 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.])

© 2005–2021 NumPy Developers
Licensed under the 3-clause BSD License.
https://numpy.org/doc/1.22/reference/generated/numpy.ma.MaskedArray.fill.html