• Remix
  • Share
  • New Entry

on 18 Nov 2023
  • 4
  • 20
  • 0
  • 0
  • 87
drawframe(1);
Write your drawframe function below
function drawframe(f)
t = 0:0.01:2*pi;
a = 3;
b = f/5;
delta = pi/2;
x = cos(a*t+delta);
y = sin(b*t);
plot(y, x)
axis off
end
Animation
Remix Tree