• Remix
  • Share
  • New Entry

on 7 Oct 2022
  • 4
  • 12
  • 0
  • 0
  • 193
N=19;
x=2*pi/N;
x1=exp(-1i.*((1:2*N)'*x/2));
x=real(x1);
y=imag(x1);
[x,y]=ndgrid(x1,x1);
z=[x(:),y(:)];
z(z(:,1)==z(:,2),:)=[];
figure
for i=1:numel(z(:,1))
plot(imag(z(i,:)),real(z(i,:)),'b');
hold on
end
axis off
Image
Remix Tree