bundles / numpy 2.4.4 / numpy / ma / extras / clump_unmasked
function
numpy.ma.extras:clump_unmasked
source: /numpy/ma/extras.py :2139
Signature
def clump_unmasked ( a ) Summary
Return list of slices corresponding to the unmasked clumps of a 1-D array. (A "clump" is defined as a contiguous region of the array).
Parameters
a: ndarrayA one-dimensional masked array.
Returns
slices: list of sliceThe list of slices, one for each continuous region of unmasked elements in
a.
Examples
import numpy as np a = np.ma.masked_array(np.arange(10)) a[[0, 1, 2, 6, 8, 9]] = np.ma.masked✓
np.ma.clump_unmasked(a)
✗See also
Aliases
-
numpy.ma.clump_unmasked