Hi Rafael

Thank you. It works. Interesting how the 'set' command alone can do the
trick:

set(a,'rotation_angles',[180,0]);

Excellent. :-)

Best regards,
Claus

On Sun, Jan 21, 2018 at 12:55 PM, Rafael Guerra <[email protected]>
wrote:

> Hi Claus,
>
>
>
> For the angles orientation problem in polar plot and correct labelling,
> here below a simple solution:
>
>
>
> *// START OF CODE*
>
> *clf*
>
> t = 0:0.01:2*%pi;
>
> t90 = %pi/2 - t;  *//redefine angle-convention consistent with loudspeaker 
> plots*
>
> theta = t;   *// keep Scilab angles for theta*
>
> rho = -1 + sin(t90);  *// use new angle mapping for rho*
>
> *polarplot*(theta, rho);
>
> a=*gca*();
>
> set(a,'rotation_angles',[180,0]);  *// rotate plot axes*
>
> *// END OF CODE*
>
>
>
> Regards,
>
> Rafael
>
> _______________________________________________
> users mailing list
> [email protected]
> http://lists.scilab.org/mailman/listinfo/users
>
>
_______________________________________________
users mailing list
[email protected]
http://lists.scilab.org/mailman/listinfo/users

Reply via email to