How to overlap the polar plot in the same figure

hello,i am a new user in the matlab programe,i want to do a polar plot which is the polar plot must be overlapped in the same figure but i still didn't get the commands how to do it,anyone can help me to solve my prob or give some references link related to my question,thanks..

Réponses (1)

hold on?
t = 0:.01:2*pi;
polar(t,sin(2*t).*cos(2*t),'--r')
hold on;
polar(t,sin(t).*cos(t),'.b')

2 commentaires

cheng
cheng le 5 Déc 2011
can u show me some example?
That *is* an example.

Connectez-vous pour commenter.

Catégories

En savoir plus sur Polar Plots dans Centre d'aide et File Exchange

Tags

Question posée :

le 5 Déc 2011

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by