• Remix
  • Share
  • New Entry

on 21 Oct 2021
  • 36
  • 191
  • 4
  • 0
  • 275
hold;
Current plot held
E=F(0:1)+i;
I=imag(E)+8;
R=E-i*I+25;
fill(R,I,'k');
Warning: Imaginary parts of complex X and/or Y arguments ignored.
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
Warning: Using only the real component of complex data.
Warning: Using only the real component of complex data.
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
Remix Tree
Load full remix tree