Title says it all. Essentially, I just want to be able to get my outputs as a procedural list,
[1,0,0,1,1,1,0,0,...]
as opposed to the usual histogram. I'm still learning my way around IBM Quantum's but I would appreciate help figuring out if this can be done, and if so, how?
edit: for example, the outputs could be from something as simple as
from qiskit import QuantumRegister, ClassicalRegister, QuantumCircuit
from numpy import pi
qreg_q = QuantumRegister(1, 'q')
creg_c = ClassicalRegister(4, 'c')
circuit = QuantumCircuit(qreg_q, creg_c)
circuit.h(qreg_q[0])
circuit.measure(qreg_q[0], creg_c[0])
```