OperatorRightScalarMult.adjoint¶
-
property
OperatorRightScalarMult.
adjoint
¶ Adjoint of this operator.
The adjoint of the operator scalar multiplication is the scalar multiplication of the operator adjoint:
OperatorLeftScalarMult(op, s).adjoint == OperatorLeftScalarMult(op.adjoint, s)
- Raises
- OpNotImplementedError
If the underlying operator is non-linear.
Examples
>>> space = odl.rn(3) >>> operator = odl.IdentityOperator(space) >>> left_mul_op = OperatorRightScalarMult(operator, 3) >>> left_mul_op.adjoint([1, 2, 3]) rn(3).element([ 3., 6., 9.])