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