- /
-
Bubbles from Scatter
on 22 Oct 2021
- 8
- 29
- 3
- 0
- 279
hold;
E=F(0:1)+i;
I=imag(E)+8;
R=E-i*I+125;
fill(R,I,'k');
s=[64150 1000];
r=randi(2885,199,1)+1;
for j=1:1
scatter(R(r),I(r),s(j),rand(199,3),'f','MarkerFaceAlpha',.3)
end
camva(2)
function V=F(p)
V=[];
if abs(diff(p))>.05
Z=p+.5*i*diff(p)*[4;
4-i+i^sin(50*norm(p))];
V=[p(1);
F(Z(1:2));
F(Z(2:3));
p(2)];
end
end