forked from neozhaoliang/pywonderland
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnewton.py
51 lines (38 loc) · 1.05 KB
/
newton.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
# -*- coding: utf-8 -*-
"""
~~~~~~~~~~~~~~~~~~
The Newton Fractal
~~~~~~~~~~~~~~~~~~
"""
import numpy as np
import matplotlib.pyplot as plt
from numba import jit
# define functions manually, do not use numpy's poly1d funciton!
@jit('complex64(complex64)', nopython=True)
def f(z):
# z*z*z is faster than z**3
return z*z*z - 1
#return z**5 + 0.25*z*z + 1.17
@jit('complex64(complex64)', nopython=True)
def df(z):
return 3*z*z
#return 5*z**4 + 0.5*z
@jit('float64(complex64)', nopython=True)
def iterate(z):
num = 0
while abs(f(z)) > 1e-4:
w = z - f(z)/df(z)
num += np.exp(-1/abs(w-z))
z = w
return num
def render(imgsize):
y, x = np.ogrid[1: -1: imgsize*2j, -1: 1: imgsize*2j]
z = x +y*1j
img = np.frompyfunc(iterate, 1, 1)(z).astype(np.float)
fig = plt.figure(figsize=(imgsize/100.0, imgsize/100.0), dpi=100)
ax = fig.add_axes([0, 0, 1, 1], aspect=1)
ax.axis('off')
ax.imshow(img, cmap='hot')
fig.savefig('newton.png')
if __name__ == '__main__':
render(imgsize=600)