How do I rotate or flip a polar plot?

I would like to change the orientation of a polar plot from the default (0 degrees on the right, counterclockwise for increasing angles).

 Respuesta aceptada

MathWorks Support Team
MathWorks Support Team el 12 de Oct. de 2020
Editada: MathWorks Support Team el 8 de Dic. de 2020
Depending on what function you are using to generate your polar plot, there are different ways to achieve this.
1. If you are using the more recent "polarplot" function:
You can set the theta orientation to certain default values by using the "ThetaZeroLocation" property of the polaraxes object: https://www.mathworks.com/help/matlab/ref/matlab.graphics.axis.polaraxes-properties.html#bu8f1sf_sep_shared-ThetaZeroLocation
This property accepts values of "right", "top", "left", and "bottom".
Additionally, you can simulate setting the "ThetaZeroLocation" to an arbitrary value by changing the "ThetaData" property of the polaraxes' children objects to achieve the desired rotation. (See the attached M file for an example of how to achieve this using a uislider within a UIFigure). Some important things to note when using this approach:
 
  1. If there are any plotted objects whose angular positions are not controlled by the "ThetaData" property (ie, text objects), you will need to adapt their positional properties to be consistent with the polaraxes' coordinates.
  2. Changing the "ThetaData" values for the children objects means that they no longer retain their original values. For example, if the original theta value was 0 and we have rotated it 15 deg, then its new theta value will be 15. To work around this, it is recommended to store the current orientation of the polar axes relative to the "ThetaZeroLocation". This will allow you to get the original data values back
2. If you are using the older "
polar
" function:
The orientation of a plot can be set using the "view" command. For example,
t = 0:0.01:2*pi;
polar(t,sin(2*t).*cos(2*t))
view([180 90])
creates a polar plot with 0 degrees on the left and increasing angles in the counterclockwise direction. Executing the command\n
view([90 -90])
changes the view so that 0 degrees on is at the top of the figure and increasing angles are in the clockwise direction.
 

6 comentarios

Sudarshan Kolar
Sudarshan Kolar el 17 de Nov. de 2016
Please refer to the following documentation link: https://www.mathworks.com/help/matlab/ref/polaraxes-properties.html
ThetaZeroLocation and ThetaDir should be useful.
If you're using a release that has the polaraxes function, use that instead of trying to manipulate the view of the axes. First make some sample data.
t = 0 : .01 : 2*pi;
Create a polaraxes.
ax = polaraxes;
Plot a curve on it.
polarplot(ax, t, t.*sin(2*t), '--r');
Change where the theta = 0 line is located and the direction in which theta increases.
ax.ThetaDir = 'clockwise';
ax.ThetaZeroLocation = 'top';
Steven Lord
Steven Lord el 12 de Dic. de 2019
The ThetaZeroLocation property of polaraxes only allows you to set the zero location to 'top', 'bottom', 'left', and 'right'. So as far as I'm aware there isn't an easy way to do what you're asking. You could try simulating it by modifying the ThetaTick and ThetaTickLabel properties.
If you have an application where you need the theta zero location to be at an arbitrary angle, consider sending it to Technical Support with an enhancement request to generalize the values the ThetaZeroLocation property can take.
Adam Danz
Adam Danz el 28 de Sept. de 2020
Here's an answer that shows the general approach to adjusting the orientation of polaraxes to an arbitrary angle other than 'right' | 'top' | 'left' | 'bottom'.
Adam Danz
Adam Danz el 1 de Jul. de 2021
The only two ways I'm aware of is by setting orientation using one of the options in my answer or by using the approach outlined in another answer I provided a link to.
ax = polaraxes;
polarplot(ax, 1:10)
ax.ThetaZeroLocation = 'top';
Do you want the theta direction to be counter-clockwise or do you want 90 degrees to be at the right? You can't have both. If the latter run the last command in the code below (I'm repeating the plot commands so MATLAB Answers will show both polar plots.)
figure
ax = polaraxes;
polarplot(ax, 1:10)
ax.ThetaZeroLocation = 'top';
ax.ThetaDir = 'clockwise'; % 90 degrees at the right

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Polar Plots en Centro de ayuda y File Exchange.

Productos

Etiquetas

Aún no se han introducido etiquetas.

Community Treasure Hunt

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

Start Hunting!

Translated by