May I ask how to implement the time evolution in qiskit, given an initialized state?
In quantum mechanics, a quantum state evolves over time with the governing Hamiltonian.
For example, in the 2-qubit Ising model,
where
from qiskit import QuantumCircuit
qc = QuantumCircuit(2)
qc.initialize('11', qc.qubits)
How can I define a time-dependent quantum gate