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