- /
-
Fractal action #4
on 10 Oct 2022
- 3
- 25
- 4
- 0
- 188
%presets
r=1500;
f=18;
t=1.5;
Z = 0;
%for improved speed, do the calculation on the gpu
e=linspace(-.0,1.3,1.3*r);
i=linspace(-.5,.5,r).*i;
[x,y]=meshgrid(e,i);
M=x+y;
%iterate
for p=1:f
Z=tan(((Z).^t)+(M));
end
imshow(real(Z'),'C',colorcube)
set(gcf,'Position',[0,0,3000,3000])