Skip to content
Snippets Groups Projects
Commit 2360ff61 authored by Sander Snoo's avatar Sander Snoo
Browse files

Fix setpoints

parent be383307
No related branches found
No related tags found
No related merge requests found
......@@ -199,7 +199,7 @@ class MeasurementConverter:
sp_names = ('repetition',)
sp_units = ('',)
shape = (n_rep,)
setpoints = ((np.arange(n_rep),),)
setpoints = (tuple(np.arange(n_rep)),)
if m.n_samples is not None:
period = 1e9/self._sample_rate
time = tuple(np.arange(m.n_samples) * period)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment