• Remix
  • Share
  • New Entry

on 12 Oct 2021
  • 1
  • 17
  • 0
  • 0
  • 277
v=-1.3:1e-3:1.3;
u=-1.6:1e-3:1.6;
[U,V]=meshgrid(u,v);
Z=U+1j*V;
for k=1:5
Z=Z.^3+0.66;
end
Z=conv2(Z,[1 1 1;1 -8.00000001 1;1 1 1],'same');
imagesc(5-(angle(Z.^2).*(1-mod(abs(Z),1))),'AlphaData',.8);
hold on
imagesc(1-(angle(Z.^2).*(1-mod(abs(Z),1))),'AlphaData',.6);
colormap(colorcube)
axis off
Remix Tree