log10

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

Return the base 10 logarithm of the input array, element-wise.

See also

numpy.log10

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

Create functional with domain/range as real numbers:

>>> func = odl.ufunc_ops.log10()