off by 1
This commit is contained in:
parent
17136a3469
commit
e4bcc2d8a0
|
@ -132,7 +132,7 @@ def addBurst(values):
|
|||
logger.info(f"{basename} loaded. Sampling {pulseNum} pulse(s) {values.nsamp} times.")
|
||||
starts = np.linspace(samples//4, 3*(samples//4), num=pulseNum, dtype=int)
|
||||
while pulseNum > 0:
|
||||
start = starts[pulseNum]
|
||||
start = starts[pulseNum-1]
|
||||
#create pulse
|
||||
|
||||
#check if this is part of a rng run
|
||||
|
|
Loading…
Reference in a new issue