FunctionalComp
- class odl.functionals.functional.FunctionalComp(*args, **kwargs)[source]
Bases:
Functional,OperatorCompComposition of a functional with an operator.
Given a functional
funcand an operatorop, such that the range of the operator is equal to the domain of the functional, this corresponds to the functional(func * op)(x) == func(op(x)).- __init__(func, op)[source]
Initialize a new instance.
Parameters
- func
Functional The left (“outer”) operator
- op
Operator The right (“inner”) operator. Its range must coincide with the domain of
func.
- func