OperatorPointwiseProduct¶
- class odl.operator.operator.OperatorPointwiseProduct(*args, **kwargs)[source]¶
Bases:
OperatorExpression type for the pointwise operator mulitplication.
OperatorPointwiseProduct(left, right)(x) == left(x) * right(x)- Attributes:
adjointAdjoint of this operator (abstract).
domainSet of objects on which this operator can be evaluated.
inverseReturn the operator inverse.
is_functionalTrueif this operator's range is aField.is_linearTrueif this operator is linear.leftThe left/first part of this multiplication.
rangeSet in which the result of an evaluation of this operator lies.
rightThe left/second part of this multiplication.
Methods
__call__(x[, out])Return
self(x[, out, **kwargs]).derivative(x)Return the derivative at
x.norm([estimate])Return the operator norm of this operator.