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
The loop in compute_projected_velocity() is one too long. I have changed line 22 from # for i in range(1, number_of_period - 1):
to for i in range(1, number_of_period - 2):
to fix it.
Regards,
BU
The text was updated successfully, but these errors were encountered:
Aloha Elastica Team.
Thank you for posting Jupyter notebooks.
The loop in
compute_projected_velocity()
is one too long. I have changed line 22 from# for i in range(1, number_of_period - 1):
to
for i in range(1, number_of_period - 2):
to fix it.
Regards,
BU
The text was updated successfully, but these errors were encountered: