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