- /
-
Fractal action #1
on 10 Oct 2022
- 4
- 30
- 15
- 0
- 179
%presets
r=1500; %resolution
f=8; %iteration level
t=1.302; %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=cos(Z.^t)+csc(M);
end
imshow(real(Z'),'C',colorcube)
set(gcf,'Position',[0,0,3000,3000])