logical_or

odl.ufunc_ops.ufunc_ops.logical_or(domain=RealNumbers())

Compute the truth value of x1 OR x2 element-wise.

See also

numpy.logical_or

Notes

This creates a Operator/Functional that applies a ufunc pointwise.

Examples

Create operator that acts pointwise on a TensorSpace

>>> space = odl.rn(3)
>>> op = odl.ufunc_ops.logical_or(space)