Saturday, January 17, 2026
HomeLanguagesnumpy.ma.clump_unmasked() function | Python

numpy.ma.clump_unmasked() function | Python

numpy.ma.clump_unmasked() function returns list of slices corresponding to the unmasked clumps of a 1-D array.

Syntax : numpy.ma.clump_unmasked(arr)

Parameters :
arr : [ndarray] A one-dimensional masked array.

Return : [list of slice] The list of slices, one for each continuous region of unmasked elements in a.

Code #1 :




# Python program explaining
# numpy.ma.clump_unmasked() function
  
# importing numpy as geek  
# and numpy.ma module as ma 
import numpy as geek 
import numpy.ma as ma 
  
arr = geek.ma.masked_array(geek.arange(8))
arr[[0, 1, 2, 6]] = geek.ma.masked
   
gfg = geek.ma.clump_unmasked(arr)
  
print (gfg)


Output :

[slice(3, 6, None), slice(7, 8, None)]

 
Code #2 :




# Python program explaining
# numpy.ma.clump_unmasked() function
  
# importing numpy as geek  
# and numpy.ma module as ma 
import numpy as geek 
import numpy.ma as ma 
  
arr = geek.ma.masked_array(geek.arange(10))
arr[[0, 1, 2, 6, 8, 9]] = geek.ma.masked
   
gfg = geek.ma.clump_unmasked(arr)
  
print (gfg)


Output :

[slice(3, 6, None), slice(7, 8, None)]
Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

Most Popular

Dominic
32474 POSTS0 COMMENTS
Milvus
118 POSTS0 COMMENTS
Nango Kala
6846 POSTS0 COMMENTS
Nicole Veronica
11977 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12063 POSTS0 COMMENTS
Shaida Kate Naidoo
6985 POSTS0 COMMENTS
Ted Musemwa
7219 POSTS0 COMMENTS
Thapelo Manthata
6933 POSTS0 COMMENTS
Umr Jansen
6911 POSTS0 COMMENTS