- /
- 
        Bifoilium
        on 26 Oct 2024
        
        
 
    - 10
- 118
- 0
- 0
- 225
 369 Hz 
drawframe(1);
 Write your drawframe function below
function drawframe(f)
if f==1
    ax=axes('Position',[0 0 1 1]);
end
if f<80
    f=f;
else
    f=24;
end
map1=flipud(jet);
map2=jet;
theta = 0:pi/10:2*pi;
rho2 = sin(theta)+(sin(f*theta)).^2;
polarplot(theta,rho2,'LineWidth',2.3,'color',map2(f,:))
hold on
axis off
g=gcf;
g.Color='k';
end


 

