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

Class _DomainGreaterEqual

numpy/ma/core.py:928–941  ·  view source on GitHub ↗

DomainGreaterEqual(v)(x) is True where x < v.

Source from the content-addressed store, hash-verified

926
927
928class _DomainGreaterEqual:
929 """
930 DomainGreaterEqual(v)(x) is True where x < v.
931
932 """
933
934 def __init__(self, critical_value):
935 "DomainGreaterEqual(v)(x) = true where x < v"
936 self.critical_value = critical_value
937
938 def __call__(self, x):
939 "Executes the call behavior."
940 with np.errstate(invalid='ignore'):
941 return umath.less(x, self.critical_value)
942
943
944class _MaskedUFunc:

Callers 1

core.pyFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…