Skip to content

Commit

Permalink
nice
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Bartlett committed Aug 17, 2018
1 parent 80f7873 commit 640646e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions LoopingMultithreadNewton.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
def f(z,_i,loudness):
return abs(z**(3+_i))-z**16-1+cmath.log(abs(z**(4)))
def df(z,_i,loudness):
return (8)*z**(4+_i)-z-(16)*z**(15)-(2-(loudness))
return (8)*z**(4+_i)-z-(16)*z**(15+loudness)-(2-(loudness))
# return 8*z**(3+_i)-z-(16)*z**(15)-1
# return 8*z**(3+_i)-z-(16)*z**(15)-(1+loudness)

Expand All @@ -46,7 +46,7 @@ def continuous_step(i):
imgy = 192
image = Image.new("HSV", (imgx, imgy))

xa = -1.2
xa = -1.0
xb = 1.0
ya = -1.5 # Domain of graph, scaled to dimensions
yb = 1.5
Expand Down

0 comments on commit 640646e

Please sign in to comment.