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
On line 600, the .cs attribute is used instead of .power to calculate the time lag.
e.g. It should be:
lag = np.angle(cross.power)/ (2 * np.pi * cross.freq)
instead of:
lag = np.angle(cross.cs)/ (2 * np.pi * cross.freq)
as it currently is.
The text was updated successfully, but these errors were encountered:
On line 600, the .cs attribute is used instead of .power to calculate the time lag.
e.g. It should be:
lag = np.angle(cross.power)/ (2 * np.pi * cross.freq)
instead of:
lag = np.angle(cross.cs)/ (2 * np.pi * cross.freq)
as it currently is.
The text was updated successfully, but these errors were encountered: