qiskit.quantum_info.Kraus.tensor¶
-
Kraus.
tensor
(other)[source]¶ Return the tensor product with another Kraus.
- Parameters
other (Kraus) – a Kraus object.
- Returns
- the tensor product \(a \otimes b\), where \(a\)
is the current Kraus, and \(b\) is the other Kraus.
- Return type
Note
The tensor product can be obtained using the
^
binary operator. Hencea.tensor(b)
is equivalent toa ^ b
.