fmax

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

Element-wise maximum of array elements.

See also

numpy.fmax

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.fmax(space)