qiskit.quantum_info.Clifford.tensor¶
- Clifford.tensor(other)[ソース]¶
Return the tensor product with another Clifford.
- パラメータ
other (Clifford) – a Clifford object.
- 戻り値
- the tensor product \(a \otimes b\), where \(a\)
is the current Clifford, and \(b\) is the other Clifford.
- 戻り値の型
注釈
The tensor product can be obtained using the
^
binary operator. Hencea.tensor(b)
is equivalent toa ^ b
.