• Remix
  • Share
  • New Entry

on 14 Oct 2021
  • 21
  • 69
  • 0
  • 0
  • 232
%brot
col=9;
%r=10;
m=1000;
Z=zeros(m);
y=0
y = 0
x=-.05; % vert -1 more up
% % left right center
l=1.2; %L>2 is out
xx=linspace(x-l,x+l,m);
yy=linspace(y-l,y+l,m);
[X,Y]=meshgrid(xx,yy);
C=X+i*Y;
for k=1:col;
Z=Z.^2+0 ;Z=conj(Z).^conj(Z)+C; %Conjugate
W=exp(-abs(Z)); %jump
end
%pcolor(W);
pcolor(rot90(W)); %Turn Buddha CCW 90deg
figure(1)
axis square
%axis off
shading interp
colormap hot(256)
Image
Remix Tree