All the parameters are in the fallowing MatLab code :
-------------------------------------------------------------------
function [t] = julia1()
a = 0.3;
b = 0.025;
t = 1000*ones(1000,1000);
for i = 1:1000
for j = 1:1000
x = 3*(i - 500)/1000;
y = 3*(j - 500)/1000;
for k = 1:1000;
xx = x^2-y^2+a;
yy = 2*x*y+b;
rr = xx^2 + yy^2;
if rr > 4
t(i,j) = k;
break
else
x = xx;
y = yy;
end
end
end
end
When I eat boletus and cepes fried in butter (with a very little touch of garlic, but not to much not to kill the taste of the mushrooms) I am also in ecstasies... but I don't see fractal curves.