qiskit.quantum_info.Operator.tensor¶
- Operator.tensor(other)[소스]¶
Return the tensor product with another Operator.
- 매개변수
other (Operator) – a Operator object.
- 반환
- the tensor product \(a \otimes b\), where \(a\)
is the current Operator, and \(b\) is the other Operator.
- 반환 형식
참고
The tensor product can be obtained using the
^
binary operator. Hencea.tensor(b)
is equivalent toa ^ b
.