Advertisement
Guest User

Untitled

a guest
Jan 18th, 2013
244
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.71 KB | None | 0 0
  1. Warning (from warnings module):
  2.   File "/Users/D/Documents/fractal.py", line 16
  3.     z *= z              # Compute z = z*z
  4. RuntimeWarning: overflow encountered in multiply
  5.  
  6. Warning (from warnings module):
  7.   File "/Users/D/Documents/fractal.py", line 16
  8.     z *= z              # Compute z = z*z
  9. RuntimeWarning: invalid value encountered in multiply
  10.  
  11. Warning (from warnings module):
  12.   File "/Users/D/Documents/fractal.py", line 19
  13.     v += (N.abs(z) >= 4)*(v == 0)*it
  14. RuntimeWarning: overflow encountered in absolute
  15.  
  16. Traceback (most recent call last):
  17.   File "/Users/D/Documents/fractal.py", line 20, in <module>
  18.     P.imgshow(v)      # Display the image
  19. AttributeError: 'module' object has no attribute 'imgshow'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement