- /
-
Fractal Candle
on 6 Oct 2021
- 10
- 26
- 0
- 0
- 246
Z=-.05+.02021i; %Tweak this for fun
col=9;
m=1200;
cx=-1.2;
cy=-0.5;
x=linspace(cx-2,cx+2,m);
y=linspace(cy-2,cy+2,m);
[X,Y]=meshgrid(x,y);
C=X+i*Y;
for k=1:col
Z=conj(-Z).^(Z.^2.6)+C;
W=exp(-abs(Z));
end
pcolor(rot90(W));
shading interp
axis([200 1200 50 1050])
axis square
colormap hot
axis off