How can I rotate the axis for a polar plot?

60 visualizaciones (últimos 30 días)
dhhtr
dhhtr el 7 de Abr. de 2015
Comentada: mahmoud deghedy el 23 de Dic. de 2020
Hi,
Would anyone know how to adjust (rotate) the polar plot function such that the vertical axis starts at 0 degrees - as opposed to 90?
theta=0:0.1:2*pi;
e=cos(theta);
polar(theta,e);
Kind regards,

Respuesta aceptada

Geoff Hayes
Geoff Hayes el 7 de Abr. de 2015
See the answer at http://www.mathworks.com/matlabcentral/answers/93690-how-do-i-rotate-or-flip-a-polar-plot which changes the viewpoint specification using view. For your case, you would want to call (after the polar plot has been created)
view([90 -90])

Más respuestas (1)

Steve Snarski
Steve Snarski el 25 de Sept. de 2019
Use axes properties. To rotate theta = 0 from right side [default] to bottom use following:
set(gca,'ThetaZeroLocation','bottom')

Categorías

Más información sobre Polar Plots en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by