-
Notifications
You must be signed in to change notification settings - Fork 10
Open
Labels
good first issueGood for newcomersGood for newcomers
Description
Taken from #4:
Create a class for Pauli
s. It should have essentially the same interface as qiskit.opflow
.
>>> from qiskit.opflow import I, X, Y, Z
>>> print(1.1 * ((1.2 * X)^(Y + (1.3 * Z))))
# 1.2 * (
# 1.1 * XY
# + 1.4300000000000002 * XZ
# )
This is an intermediate step to #6, which should take a Pauli string as input and output a trotterised circuit.
Metadata
Metadata
Assignees
Labels
good first issueGood for newcomersGood for newcomers