- /
-
Batman Launcher
on 10 Oct 2022
- 5
- 35
- 0
- 0
- 217
r=1500; %resolution
f=10; %iteration level
t=1.4; %mandelbrot exponent
Z=0;
[x,y]=meshgrid(linspace(-.06,.7,1.35*r),linspace(-.3,.3,r).*i);
M=x+y;
%iterate
for p=1:f
Z=(1.46*cos(Z.^2).^t)+tan(M);
end
imshow(real(Z'),'C',colorcube)
set(gcf,'Position',[0,0,3000,3000])
colormap(hot)
shading interp