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