• Remix
  • Share
  • New Entry

on 21 Oct 2021
  • 3
  • 8
  • 0
  • 0
  • 197
n = linspace(0,2*pi,50);
cs = {'r','g','b','c','m','y','k','w'};
for c=1:8
x=tan(cos((n+c)*pi^0.5));
y=sin(tan((n+c)*pi^0.5));
err=n.*sin(n+c).*cos(n-c);
errorbar(x,y,err,'both',['o' cs{c}])
hold on
end
axis off
Remix Tree