OperatorRightVectorMult
- class odl.OperatorRightVectorMult(*args, **kwargs)
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.- __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