BroadcastOperator.adjoint¶
-
property
BroadcastOperator.
adjoint
¶ Adjoint of this operator.
- Returns
- adjointlinear
BroadcastOperator
- adjointlinear
Examples
>>> I = odl.IdentityOperator(odl.rn(3)) >>> op = BroadcastOperator(I, 2 * I) >>> op.adjoint([[1, 2, 3], [2, 3, 4]]) rn(3).element([ 5., 8., 11.])