Home > Archive > Matlab > April 2005 > rotate a polar plot
You are viewing an archived Text-only version of the thread.
To view this thread in it's original format and/or if you want to reply to
this thread please [click here]
| Author |
rotate a polar plot
|
|
|
| Hello,
I am using the polar function to plot azimuth and zenith angles on a
polar plot. But the default is to have the 0/360 degrees on the
right of the plot and I am used to looking at 0/360 at the top of the
plot. Is it possible to rotate the polar plot counter-clockwise?
Also, is it possible to label zenith angles in degrees rather than
radians?
Thank you..
| |
|
| Mutlu wrote:
>
>
> Hello,
>
> I am using the polar function to plot azimuth and zenith angles on
> a
> polar plot. But the default is to have the 0/360 degrees on the
> right of the plot and I am used to looking at 0/360 at the top of
> the
> plot. Is it possible to rotate the polar plot counter-clockwise?
> Also, is it possible to label zenith angles in degrees rather than
> radians?
>
> Thank you..
May be VIEW can help you ...
polar(x,y) ;
view(-90,90) ;
Can't you just multiply with (180/pi) to get degrees?
hth
Jos
|
|
|
|
|