- /
-
Zoom of Fractal action #3
on 10 Oct 2022
- 23
- 114
- 12
- 0
- 187
%presets
r=1500; %resolution
f=10; %iteration level
t=1.4; %mandelbrot exponent
Z=0;
[x,y]=meshgrid(linspace(-.06,.7,1.35*r),linspace(-.3,.3,r).*i);
M=x+y;
%iterate
for p=1:f
Z=(1.46*cos(Z).^t)+tan(M);
end
imshow(real(Z'),'C',colorcube)
set(gcf,'Position',[0,0,3000,3000])