OperatorLeftVectorMult.adjoint¶
- property OperatorLeftVectorMult.adjoint¶
Adjoint of this operator.
The adjoint of the operator left vector multiplication is the right multiplication of the given operator by the complex conjugate of the given vector.
OperatorLeftVectorMult(op, y).adjoint == OperatorRightVectorMult(op.adjoint, y.conj())
- Returns:
- adjoint
OperatorRightVectorMult
- adjoint
- Raises:
- OpNotImplementedError
If the underlying operator is non-linear.