- /
-
Unknown Aerial Object
on 22 Oct 2021
- 8
- 12
- 7
- 0
- 195
%Zeta bot
close all
col=10;
r=10;
m=400; %800 or 1200
cx=0.1;
cy=0;
l=5; %L=2 is normal, l=10 is zoom out
x=linspace(cx-l,cx+l,m); % x=[-5 5]
y=linspace(cy-l,cy+l,m); %y=[-5 5]
[X,Y]=meshgrid(x,y);
Z=zeros(m);
C=X+i*Y;
n=-0.951 %z. n=1e-8;
for k=1:col;
Z=Z.^n+C;
W=abs(Z); %No details, simpler
%W=imag(Z); %FAIL
end
%pcolor(W);
pcolor(rot90(W)); %Looks like
shading interp;
axis off
%colormap(gray(32))
%colormap("flag")