MCPcopy Index your code
hub / github.com/numpy/numpy / fmask

Function fmask

numpy/ma/core.py:8068–8072  ·  view source on GitHub ↗

Returns the filled array, or True if masked.

(x)

Source from the content-addressed store, hash-verified

8066
8067 """
8068 def fmask(x):
8069 "Returns the filled array, or True if masked."
8070 if x is masked:
8071 return True
8072 return filled(x)
8073
8074 def nmask(x):
8075 "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

Used in the wild real call sites across dependent graphs

searching dependent graphs…