• Remix
  • Share
  • New Entry

on 13 Nov 2023
  • 7
  • 8
  • 0
  • 0
  • 144
drawframe(1);
Write your drawframe function below
function drawframe(f)
i=gcf;
i.Color='k';
[X,Y] = meshgrid(-pi:pi/8:pi,-pi:pi/8:pi);
t=floor(f/3);
U = sin(t*Y);
V = cos(t*X);
quiver(X,Y,U,V,'y','linewidth',2)
axis tight
axis off
end
Animation
Remix Tree