qiskit.quantum_info.Kraus.dot¶
- Kraus.dot(other, qargs=None)¶
Return the right multiplied operator self * other.
- Parâmetros
other (Operator) – an operator object.
qargs (list or None) – Optional, a list of subsystem positions to apply other on. If None apply on all subsystems (default: None).
- Retorno
The right matrix multiplied Operator.
- Tipo de retorno
Nota
The dot product can be obtained using the
@
binary operator. Hencea.dot(b)
is equivalent toa @ b
.