PauliOp¶
- class PauliOp(*args, **kwargs)[source]¶
Bases:
PrimitiveOp
Deprecated: Class for Operators backed by Terra’s
Pauli
module.Deprecated since version 0.24.0: The class
qiskit.opflow.primitive_ops.pauli_op.PauliOp
is deprecated as of qiskit-terra 0.24.0. It will be removed no earlier than 3 months after the release date. For code migration guidelines, visit https://qisk.it/opflow_migration.- Parameters
primitive – The Pauli which defines the behavior of the underlying function.
coeff – A coefficient multiplying the primitive.
- Raises
TypeError – invalid parameters.
Methods Defined Here
Return Operator addition of self and other, overloaded by
+
.Return a new Operator equal to the Operator's adjoint (conjugate transpose), overloaded by
~
.Return Operator Composition between self and other (linear algebra-style: A@B(x) = A(B(x))), overloaded by
@
.Evaluate Equality between Operators, overloaded by
==
.Evaluate the Operator's underlying function, either on a binary string or another Operator.
Return a
CircuitOp
equivalent to e^-iH for this operator H.Permutes the sequence of Pauli matrices.
Return a set of strings describing the primitives contained in the Operator.
Return tensor product between self and other, overloaded by
^
.Returns a
QuantumCircuit
equivalent to this Operator.Returns an
Instruction
equivalent to this Operator.Return NumPy representation of the Operator.
Returns a sum of
PauliOp
s equivalent to this Operator.Returns SciPy sparse matrix representation of the Operator.
Attributes
- INDENTATION = ' '¶
- coeff¶
The scalar coefficient multiplying the Operator.
- Returns
The coefficient.
- instance_id¶
Return the unique instance id.
- num_qubits¶
- parameters¶
- primitive: Pauli¶
The primitive defining the underlying function of the Operator.
- Returns
The primitive object.
- settings¶
Return operator settings.