How to plot multiple polar graph?

108 visualizzazioni (ultimi 30 giorni)
Saad
Saad il 24 Apr 2012
Commentato: yonatan yamin il 21 Apr 2022
How can I plot multiple polar diagram in one graph?
  1 Commento
Chris
Chris il 16 Mar 2015
Why don't the axes handles work ? I have R2013a, and the docs say you get a handle from polar, and can pass this as the first parameter
K>> h = polar (t(1:5),r(1:5), '-*')
h =
1.8470e+03
K>> polar (h,t(6:end),r(6:end), '-O') Error using polar (line 23) Too many input arguments.

Accedi per commentare.

Risposta accettata

Davide Ferraro
Davide Ferraro il 24 Apr 2012
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')
  3 Commenti
Saad
Saad il 26 Apr 2012
Thanks :)
yonatan yamin
yonatan yamin il 21 Apr 2022
thanks it was very helpfull

Accedi per commentare.

Più risposte (1)

Walter Roberson
Walter Roberson il 24 Apr 2012
Probably the easiest way is to plot each of the diagrams on its own axes, and then use copyobj() to copy them on to one common axes.
polar() is implemented as creating a circular patch() object to hold the diagram, drawing in the spokes and discs, using text() to add labels, and using pol2cart() to convert the polar coordinates to cartesian coordinates for the purpose of drawing the graph itself.
polar() detects that presence of the patch() object and will not draw it again if it is present there. This is why you need to draw on different axes in order to be able to end up with multiple diagrams.
After you copyobj() you will need to offset all of the coordinates of all of the graphics objects so that they do not overlap. This will be a bit tricky as text() objects will only accept data coordinates, not pixel coordinates.
Also note that polar() creates two axes.
I would suggest that you might want to consider using subplot() instead of having multiple diagrams on the same graph.

Categorie

Scopri di più su Polar Plots in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by