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