• Remix
  • Share
  • New Entry

on 29 Oct 2021
  • 20
  • 64
  • 2
  • 0
  • 268
figure('Color','k','Renderer','painters')
t = linspace(-3,3,1000);
x = 7*sin(7.32*t)./(1+cos(1.42*t).^2);
y = 7*cos(1.42*t).*sin(7.32*t).^4;
for i=0:pi/3:2*pi
m = [cos(i) -sin(i); sin(i) cos(i)]*([x; y]);
plot(m(1,:),m(2,:),'color',[1 1 1],'LineWidth',1)
hold on
end
axis equal off
Remix Tree