qiskit.opflow.primitive_ops.PrimitiveOp.tensor¶
- PrimitiveOp.tensor(other)[source]¶
Return tensor product between self and other, overloaded by
^
. Note: You must be conscious of Qiskit's big-endian bit printing convention. Meaning, X.tensor(Y) produces an X on qubit 0 and an Y on qubit 1, or X⨂Y, but would produce a QuantumCircuit which looks like-[Y]- -[X]-
Because Terra prints circuits and results with qubit 0 at the end of the string or circuit.
- প্যারামিটার
other (
OperatorBase
) -- TheOperatorBase
to tensor product with self.- রিটার্ন টাইপ
- রিটার্নস
An
OperatorBase
equivalent to the tensor product of self and other.