From 640646e5a802e5d805182a12169957533488a477 Mon Sep 17 00:00:00 2001 From: Michael Bartlett Date: Fri, 17 Aug 2018 17:09:59 -0600 Subject: [PATCH] nice --- LoopingMultithreadNewton.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/LoopingMultithreadNewton.py b/LoopingMultithreadNewton.py index d132257..6142d3d 100755 --- a/LoopingMultithreadNewton.py +++ b/LoopingMultithreadNewton.py @@ -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) @@ -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