• Remix
  • Share
  • New Entry

on 30 Oct 2021
  • 28
  • 22
  • 1
  • 0
  • 265
figure('Color','b','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','r','LineWidth',.5)
hold on
end
axis equal off
Remix Tree