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