• Remix
  • Share
  • New Entry

on 5 Oct 2021
  • 8
  • 34
  • 0
  • 0
  • 225
x = (0:.001:4*pi);
y = 0.5*x.^2.*sin(x.^12);
h1 = plot(x,y);
k = 18;
c = jet(k);
for n = 1:k
h2 = copyobj(h1, gca);
t = hgtransform;
set(h2,Parent=t,Color=c(n,:))
theta = n*2*pi/k;
rot = makehgtform(ZRotate=theta);
set(t, Matrix=rot);
end
axis off
Remix Tree