- /
-
Fractal action #2
on 10 Oct 2022
- 6
- 17
- 14
- 2
- 180
%presets
r=1500; %resolution
f=15; %iteration level
t=1.322; %mandelbrot exponent
Z=0;
[x,y]=meshgrid(linspace(-0.8,1.6,r),linspace(-2.6,2.6,r).*i);
M=x+y;
%iterate
for p=1:f
Z=exp(Z.^t)+tan(M);
end
imshow(real(Z'),'C',colorcube)
set(gcf,'Position',[0,0,3000,3000])