• Remix
  • Share
  • New Entry

on 7 Oct 2021
  • 51
  • 42
  • 0
  • 0
  • 214
close all
t = linspace(-13,13,9000);
x = 6*sin(7.42*t)./(1+sin(10.8*t).^2).^2;
y = 6*sin(7.42*t).^3;
for i=0:pi/4:2*pi
m = [cos(i) -sin(i); sin(i) cos(i)]*([x; y]);
plot(m(1,:),m(2,:),'LineWidth',0.5)
hold on
end
axis equal off
Remix Tree