FunctionalTranslation¶
- class odl.solvers.functional.functional.FunctionalTranslation(*args, **kwargs)[source]¶
Bases:
FunctionalImplementation of the translated functional.
Given a functional
fand an elementtranslationin the domain off, this corresponds to the functionalf(. - translation).- Attributes:
adjointAdjoint of this operator (abstract).
convex_conjConvex conjugate functional of the translated functional.
domainSet of objects on which this operator can be evaluated.
functionalThe original functional that has been translated.
grad_lipschitzLipschitz constant for the gradient of the functional.
gradientGradient operator of the functional.
inverseReturn the operator inverse.
is_functionalTrueif this operator's range is aField.is_linearTrueif this operator is linear.proximalProximal factory of the translated functional.
rangeSet in which the result of an evaluation of this operator lies.
translationThe translation.
Methods
__call__(x[, out])Return
self(x[, out, **kwargs]).bregman(point, subgrad)Return the Bregman distance functional.
derivative(point)Return the derivative operator in the given point.
norm([estimate])Return the operator norm of this operator.
translated(shift)Return a translation of the functional.
- __init__(func, translation)[source]¶
Initialize a new instance.
Given a functional
f(.)and a vectortranslationin the domain off, this corresponds to the functionalf(. - translation).- Parameters:
- func
Functional Functional which is to be translated.
- translation
domainelement The translation.
- func