2
0
mirror of https://github.com/m-labs/artiq.git synced 2025-01-29 03:40:20 +08:00

examples/pdq2_simple: fix offset scan

This commit is contained in:
Robert Jördens 2016-02-23 21:10:50 +01:00
parent 5599ec16ea
commit a714be1c99

View File

@ -36,7 +36,7 @@ class PDQ2Simple(EnvExperiment):
return self.pmt.count()
def run(self):
offsets = np.linspace(0, 10, 3)
offsets = np.arange(0, 3)
for o in offsets:
self.setup(o)
self.one()