OperatorComp
- class odl.OperatorComp(*args, **kwargs)
Bases:
OperatorExpression type for the composition of operators.
OperatorComp(left, right)(x) == left(right(x))The composition is only well-defined if
left.domain == right.range.
Bases: Operator
Expression type for the composition of operators.
OperatorComp(left, right)(x) == left(right(x))
The composition is only well-defined if left.domain == right.range.