Skip to content

Commit

Permalink
fix: drop complex value from raw acquisition
Browse files Browse the repository at this point in the history
  • Loading branch information
stavros11 committed Aug 6, 2024
1 parent 130ac05 commit a369529
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/qibolab/instruments/qm/program/acquisition.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ def fetch(self, handles):
qres = handles.get(f"{self.name}_Q").fetch_all()
# convert raw ADC signal to volts
u = unit()
signal = collect(u.raw2volts(ires), 1j * u.raw2volts(qres))
signal = collect(u.raw2volts(ires), u.raw2volts(qres))
return _split(signal, self.npulses, iq=True)


Expand Down

0 comments on commit a369529

Please sign in to comment.