This is a pre-release version (2.5.0.dev0+git20251130.2de293a). Go to latest (2.4.4)
{ } Raw JSON

bundles / numpy 2.5.0.dev0+git20251130.2de293a / numpy / ma / extras / clump_unmasked

function

numpy.ma.extras:clump_unmasked

source: build-install/usr/lib/python3.14/site-packages/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 : ndarray

A one-dimensional masked array.

Returns

slices : list of slice

The 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

clump_masked
flatnotmasked_contiguous
flatnotmasked_edges
notmasked_contiguous
notmasked_edges

Aliases

  • numpy.ma.clump_unmasked