theta=-pi:0.01:pi;
r1=sin(2.4*theta).^4+cos(2.4*theta).^4;
r2=sin(1.2*theta).^2+cos(6*theta).^3;
r3=sin(8*theta/5);
polar(r1,theta,'b')
hold on
polar(r2,theta,'g')
polar(r3,theta,'r')
hold off