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
(defnrefine-crossing"This is used to zero in on crossings in autonomous systems, such as Henon-Heiles."
[sec-eps advance state]
(loop [[_ [x] [xd]] state]
(let [zstate (advance state (- (/ x xd)))]
(if (< (Math/abs (get-in zstate [10])) sec-eps)
zstate
(recur zstate)))))
The text was updated successfully, but these errors were encountered:
This will be a mathbox + clerk heavy fun one!
Some code from the namespace:
The text was updated successfully, but these errors were encountered: