- /
-
Jelly Fish Descend
on 14 Oct 2021
- 13
- 33
- 1
- 0
- 223
%Jelly fish
col=13;
r=10;
m=800;
cx=-.7
cy=0;
l=1; %L=2
x=linspace(cx-l,cx+l,m);
y=linspace(cy-l,cy+l,m);
[X,Y]=meshgrid(x,y);
C=X+i*Y;
Z=zeros(m);
for k=1:col;
Z=conj(Z).^-1.1; %pwr -1
Z=Z.^1+C;
W=exp(-abs(Z));
end
%pcolor(W);
pcolor(rot90(W)); %90 turn
colormap copper(128)
shading flat;
axis equal off;