greater¶
- odl.ufunc_ops.ufunc_ops.greater(domain=RealNumbers())¶
Return the truth value of (x1 > x2) element-wise.
See also
Notes
This creates a
Operator/Functionalthat applies a ufunc pointwise.Examples
Create operator that acts pointwise on a
TensorSpace>>> space = odl.rn(3) >>> op = odl.ufunc_ops.greater(space)