- /
-
Ok ok i'll stop now ;)
on 10 Oct 2022
- 37
- 120
- 2
- 0
- 173
%presets
r=1500;
f=17;
t=1.5;
Z = 0;
[x,y]=meshgrid(linspace(0.7,1.08,r),linspace(-.2,.2,r).*i);
M=x+y;
%iterate
for p=1:f
Z=tan(Z.^t+M);
end
imshow(real(Z'),'C',colorcube)
%get big picture
set(gcf,'Position',[0,0,3000,3000])