OperatorLeftVectorMult¶
- class odl.operator.operator.OperatorLeftVectorMult(*args, **kwargs)[source]¶
Bases:
OperatorExpression type for the operator left vector multiplication.
OperatorLeftVectorMult(op, y)(x) <==> y * op(x)- Attributes:
adjointAdjoint of this operator.
domainSet of objects on which this operator can be evaluated.
inverseInverse of this operator.
is_functionalTrueif this operator's range is aField.is_linearTrueif this operator is linear.operatorThe operator part of this multiplication.
rangeSet in which the result of an evaluation of this operator lies.
vectorThe fixed element to multiply with.
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.
- __init__(operator, vector)[source]¶
Initialize a new instance.
- Parameters:
- operator
Operator The range of
opmust be aLinearSpace.- vector
LinearSpaceElementinop.range The vector to multiply by
- operator