MATLAB: How to plot multiple polar graph

plottingpolar diagram

How can I plot multiple polar diagram in one graph?

Best Answer

The HOLD command should work:
t = 0:.01:2*pi;
polar(t,cos(2*t).*cos(2*t),'--k')
hold on
polar(t,sin(2*t).*cos(2*t),'--r')