qiskit.quantum_info.Kraus.tensor¶
- Kraus.tensor(other)[código fonte]¶
Return the tensor product with another Kraus.
- Parâmetros
other (Kraus) – a Kraus object.
- Retorno
- the tensor product \(a \otimes b\), where \(a\)
is the current Kraus, and \(b\) is the other Kraus.
- Tipo de retorno
Nota
The tensor product can be obtained using the
^
binary operator. Hencea.tensor(b)
is equivalent toa ^ b
.