logaddexp

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

Logarithm of the sum of exponentiations of the inputs.

See also

numpy.logaddexp

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