- /
-
Jet candle
on 10 Oct 2022
- 8
- 29
- 3
- 0
- 206
%presets
r=1500; %resolution
f=6; %iteration level
t=2.27; %mandelbrot exponent
Z=0;
[x,y]=meshgrid(linspace(-.4,.57,1.35*r),linspace(-.37,.37,r).*i);
M=x+y;
%iterate
for p=1:f
Z=(0.9*tan(Z).^t)+tan(M).^tan(M).^sin(M).^csc(M);
end
imshow(real(Z'),'C',jet)
set(gcf,'Position',[0,0,3000,3000])