• Remix
  • Share
  • New Entry

on 25 Oct 2022
  • 8
  • 22
  • 0
  • 0
  • 152
np=15;%number of points
nq=15;%number of quadrants
hp=1:np;
nqV=[0;cumsum(2*pi/nq.*ones(nq,1))];
vp=exp(1i*nqV)*hp;
vp(2:2:end,:)=fliplr(vp(2:2:end,:));
line(real(vp(:)),imag(vp(:)))
axis off
axis square
Remix Tree