InnerProductOperator.adjoint¶
-
property
InnerProductOperator.
adjoint
¶ Adjoint of this operator.
- Returns
- adjoint
MultiplyOperator
The operator of multiplication with
vector
.
- adjoint
Examples
>>> r3 = odl.rn(3) >>> x = r3.element([1, 2, 3]) >>> op = InnerProductOperator(x) >>> op.adjoint(2.0) rn(3).element([ 2., 4., 6.])