You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# brute force correlation to get an estimate of the delta_t between series
x=np.zeros(int(np.ceil(tmax-tmin) /tbin))
y=np.zeros_like(x)
This could be resolved by first subtracting the offset between the first timestamp of both arrays, then adding it back as a constant in the interpolation function
The text was updated successfully, but these errors were encountered:
The following lines cause memory to increase and performance to decrease as the fixed offset between timestamps increases.
ibl-neuropixel/src/ibldsp/utils.py
Lines 37 to 41 in 2af823b
This could be resolved by first subtracting the offset between the first timestamp of both arrays, then adding it back as a constant in the interpolation function
The text was updated successfully, but these errors were encountered: