OperatorRightVectorMult¶
- class odl.operator.operator.OperatorRightVectorMult(*args, **kwargs)[source]¶
Bases:
OperatorExpression type for the operator right vector multiplication.
OperatorRightVectorMult(op, y)(x) == op(y * x)The scalar multiplication is well-defined only if
yis inop.domain.- 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
OperatorRightVectorMultinstance.- Parameters:
- operator
Operator The domain of
operatormust be avector.space.- vector
op.domainelement The fixed element to multiply with.
- operator