proximal_composition¶
-
odl.solvers.nonsmooth.proximal_operators.
proximal_composition
(proximal, operator, mu)[source]¶ Proximal operator factory of functional composed with unitary operator.
For a functional
F
and a linear unitaryOperator
L
this is the factory for the proximal operator ofF * L
.- Parameters
- proximalcallable
A factory function that, when called with a step size returns the proximal operator of
F
- operator
Operator
The operator to compose the functional with
- mu
operator.field
element Scalar such that
(operator.adjoint * operator)(x) = mu * x
- Returns
- prox_factoryfunction
Factory for the proximal operator to be initialized
Notes
Given a linear operator with the property that for a scalar
and a convex function , the following identity holds
This factory function implements this functionality.
There is no simple formula for more general operators.
The function cannot verify that the operator is unitary, the user needs to verify this.
For reference on the identity used, see [CP2011c].
References
[CP2011c] Combettes, P L, and Pesquet, J-C. Proximal splitting methods in signal processing. In: Bauschke, H H, Burachik, R S, Combettes, P L, Elser, V, Luke, D R, and Wolkowicz, H. Fixed-point algorithms for inverse problems in science and engineering, Springer, 2011.