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

Function nmask

numpy/ma/core.py:8074–8078  ·  view source on GitHub ↗

Returns the mask, True if ``masked``, False if ``nomask``.

(x)

Source from the content-addressed store, hash-verified

8072 return filled(x)
8073
8074 def nmask(x):
8075 "Returns the mask, True if ``masked``, False if ``nomask``."
8076 if x is masked:
8077 return True
8078 return getmask(x)
8079 # Get the indices.
8080 c = filled(indices, 0)
8081 # Get the masks.

Callers 1

chooseFunction · 0.85

Calls 1

getmaskFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…