- /
-
Fractal action #3
on 10 Oct 2022
- 5
- 14
- 13
- 0
- 183
%presets
r=1500; %resolution
f=10; %iteration level
t=1.4; %mandelbrot exponent
Z=0;
[x,y]=meshgrid(linspace(-1,.75,2*r),linspace(-.4,.4,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])