• Remix
  • Share
  • New Entry

on 3 Oct 2022
  • 7
  • 235
  • 5
  • 5
  • 257
n=2000;
f=(1-sqrt(5))/2;
fig=figure;
fig.Position=[300,50,650,650];
ax=axes(fig);
d=0.01;
a=0;
for i=1:n
%convert from polar to cartesian coordinates
x(i)=sin(a)*d;
y(i)=cos(a)*d;
d=d+0.02; %increment spacing from the spacing
a=a+(2*pi())/f; %increment angle by using the golden ratio
sz(i)=0.2*i+10; %increment marker sice
end
scatter(ax,x,y,sz,sz,'filled','MarkerEdgeColor','k');
colormap(ax,'colorcube')
ax.YColor='w';
ax.XColor='w';
Image
Remix Tree
Load full remix tree