Friday, November 21, 2025
HomeLanguagesnumpy.ma.flatnotmasked_edges() function | Python

numpy.ma.flatnotmasked_edges() function | Python

numpy.ma.flatnotmasked_edges() function find the indices of the first and last unmasked values.

Syntax : numpy.ma.flatnotmasked_edges(arr)

Parameters :
arr : [ array_like] Input 1-D MaskedArray.

Return : [ndarray or None] The indices of first and last non-masked value in the array. Returns None if all values are masked.

Code #1 :




# Python program explaining
# numpy.ma.flatnotmasked_edges() function
  
# importing numpy as geek  
# and numpy.ma module as ma 
import numpy as geek 
import numpy.ma as ma 
  
arr = geek.ma.arange(12)
  
gfg = geek.ma.flatnotmasked_edges(arr)
  
print (gfg)


Output :

[ 0, 11]

 
Code #2 :




# Python program explaining
# numpy.ma.flatnotmasked_edges() function
  
# importing numpy as geek  
# and numpy.ma module as ma 
import numpy as geek 
import numpy.ma as ma 
  
arr = geek.ma.arange(12)
arr[:] = geek.ma.masked
  
gfg = geek.ma.flatnotmasked_edges(arr)
  
print (gfg)


Output :

None
Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

Most Popular

Dominic
32405 POSTS0 COMMENTS
Milvus
97 POSTS0 COMMENTS
Nango Kala
6781 POSTS0 COMMENTS
Nicole Veronica
11928 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11995 POSTS0 COMMENTS
Shaida Kate Naidoo
6907 POSTS0 COMMENTS
Ted Musemwa
7165 POSTS0 COMMENTS
Thapelo Manthata
6862 POSTS0 COMMENTS
Umr Jansen
6847 POSTS0 COMMENTS