Advertisement
Guest User

Untitled

a guest
Feb 27th, 2020
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. function resultat1 = converge(c)
  2. %UNTITLED10 Summary of this function goes here
  3. % Detailed explanation goes here
  4. k = 0;
  5. w = c;
  6. while abs(c) < 2 && k < 100
  7. k = k +1;
  8. c = c .*c +w ;
  9.  
  10.  
  11.  
  12. end
  13.  
  14. resultat1 = k;
  15. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement