Advertisement
Guest User

Untitled

a guest
Aug 18th, 2017
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. def find_fix_point(f,x):
  2. while f(x)>0.1:
  3. x = f(x)
  4. return x
  5.  
  6. def find_fix_point(f,x):
  7. while (f(x)>0.1).any():
  8. x = f(x)
  9. return x
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement