- /
-
The joys of Spring
on 21 Oct 2021
- 36
- 194
- 4
- 0
- 275
hold;
E=F(0:1)+i;
I=imag(E)+8;
R=E-i*I+25;
fill(R,I,'k');
s=[450 100];
r=randi(2885,199,1)+1;
for j=1:2
scatter(R(r),I(r),s(j),rand(199,3),'f','MarkerFaceAlpha',.6)
end
camva(3)
function V=F(p)
V=[];
if abs(diff(p))>.05
Z=p+.5*i*diff(p)*[4;
4-i+i^cos(50*norm(p))];
V=[p(1);
F(Z(1:2));
F(Z(2:3));
p(2)];
end
end