qiskit.quantum_info.Pauli.tensor¶
- Pauli.tensor(other)[fuente]¶
Return the tensor product with another Pauli.
- Parámetros
other (Pauli) – a Pauli object.
- Devuelve
- the tensor product \(a \otimes b\), where \(a\)
is the current Pauli, and \(b\) is the other Pauli.
- Tipo del valor devuelto
Nota
The tensor product can be obtained using the
^
binary operator. Hencea.tensor(b)
is equivalent toa ^ b
.