logaddexp2

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

Logarithm of the sum of exponentiations of the inputs in base-2.

See also

numpy.logaddexp2

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