MCPcopy Create free account
hub / github.com/numpy/numpy / fmask

Function fmask

numpy/ma/core.py:7739–7743  ·  view source on GitHub ↗

Returns the filled array, or True if masked.

(x)

Source from the content-addressed store, hash-verified

7737
7738 """
7739 def fmask(x):
7740 "Returns the filled array, or True if masked."
7741 if x is masked:
7742 return True
7743 return filled(x)
7744
7745 def nmask(x):
7746 "Returns the mask, True if ``masked``, False if ``nomask``."

Callers 1

chooseFunction · 0.85

Calls 1

filledFunction · 0.85

Tested by

no test coverage detected