Flattened data array.

This commit is contained in:
jupfi 2023-12-16 11:09:40 +01:00
parent 4548c9b9c8
commit e5c98cbf3a

View file

@ -157,6 +157,8 @@ class LimeNQRController(BaseSpectrometerController):
"""
tdx = lime.HDF.tdx[indices] - lime.HDF.tdx[indices][0]
tdy = lime.HDF.tdy[indices] / lime.nav
# flatten the tdy array
tdy = tdy.flatten()
return tdx, tdy
def get_fft_shift(self):