ReductionOperator.adjoint

property ReductionOperator.adjoint

Adjoint of this operator.

Returns
adjointlinear BroadcastOperator

Examples

>>> I = odl.IdentityOperator(odl.rn(3))
>>> op = ReductionOperator(I, 2 * I)
>>> op.adjoint([1, 2, 3])
ProductSpace(rn(3), 2).element([
    [ 1.,  2.,  3.],
    [ 2.,  4.,  6.]
])