- /
-
Tool but in MatLab
on 24 Oct 2022
- 4
- 26
- 0
- 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=cot(Z.^t+M);
end
imshow(real(Z'),'C',colorcube)
%get big picture
set(gcf,'Position',[0,0,3000,3000])