This is a pre-release version (latest). Go to latest (2.4.4)
{ } Raw JSON

bundles / numpy latest / numpy / ma / extras / clump_masked

function

numpy.ma.extras:clump_masked

source: build-install/usr/lib/python3.14/site-packages/numpy/ma/extras.py :2175

Signature

def   clump_masked ( a )

Summary

Returns a list of slices corresponding to the masked 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 masked 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_masked(a)

See also

clump_unmasked
flatnotmasked_contiguous
flatnotmasked_edges
notmasked_contiguous
notmasked_edges

Aliases

  • numpy.ma.clump_masked