- /
-
Signal Noise
on 25 Oct 2024
- 10
- 146
- 0
- 0
- 183
function drawframe(f)
h = linspace(0,20*pi,96);
a=h(f)
t = linspace(0,a,100);
x= (cos(5*t)+cos(t)).*sin(2*t)
y= (sin(5*t)+sin(t)).*sin(t)
plot(x,y,'LineWidth',3,'Color',[0 0 1])
axis equal
axis([-1.2 1.2 -0.5 2.5])
end