SuperOp.compose¶
- SuperOp.compose(other, qargs=None, front=False)[source]¶
Return the composed quantum channel self @ other.
- Parameters
other (QuantumChannel) – a quantum channel.
qargs (list or None) – a list of subsystem positions to apply other on. If None apply on all subsystems [default: None].
front (bool) – If True compose using right operator multiplication, instead of left multiplication [default: False].
- Returns
The quantum channel self @ other.
- Return type
- Raises
QiskitError – if other has incompatible dimensions.