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
def g(x, offset=offset, wait=True):
from time import sleep
from random import random
a = 0.01
if wait:
sleep(random() / 10)
return x + a**2 / (a**2 + (x - offset)**2)
f = lambda x: g(x)