• Remix
  • Share
  • New Entry

on 18 Oct 2024
  • 10
  • 73
  • 0
  • 0
  • 178
Cite your audio source here (if applicable):
drawframe(1);
a = 0
x = 1×100
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
<mw-icon class=""></mw-icon>
<mw-icon class=""></mw-icon>
y = 1×100
0.5000 0.5000 0.5000 0.5000 0.5000 0.5000 0.5000 0.5000 0.5000 0.5000 0.5000 0.5000 0.5000 0.5000 0.5000 0.5000 0.5000 0.5000 0.5000 0.5000 0.5000 0.5000 0.5000 0.5000 0.5000 0.5000 0.5000 0.5000 0.5000 0.5000
<mw-icon class=""></mw-icon>
<mw-icon class=""></mw-icon>
MeshDensity = 5555
Write your drawframe function below
% Hi my name is Andrea and I'm still beginner in MATLAB
% Thank you
function drawframe(f)
h = linspace(0,2*pi,96);
a=h(f)
t = linspace(0,a);
x=0.5*sin(7*t)+cos(t)
y=0.5*cos(7*t)+sin(t)
plot(x,y,'LineWidth',5,'Color',[0 0 1])
MeshDensity=5555
axis equal
axis([-1.7 1.7 -1.7 1.7])
end
Movie
Audio

This submission does not have audio.

Remix Tree