Re: Polarplot orientation
- To: mathgroup at smc.vnet.net
 - Subject: [mg126834] Re: Polarplot orientation
 - From: Narasimham <mathma18 at hotmail.com>
 - Date: Tue, 12 Jun 2012 02:57:13 -0400 (EDT)
 - Delivered-to: l-mathgroup@mail-archive0.wolfram.com
 - References: <jqusqh$rnh$1@smc.vnet.net>
 
On Jun 9, 12:09 pm, "Mat' G\." <ellocoma... at free.fr> wrote:
> Hi all,
>
> Is it possible to change a polarplot to get 0=B0 vertical "@ 12.00" and to
> rotate clockwise?
>
> Best regards,
>
> Mateo
To rotate a figure in PolarPlot subtract al from argument. To enlarge,
multiply amplitude.
al = 0 Degree; pp0 = PolarPlot[Sin[ (t - al)], {t, 0, Pi}]
al = 135 Degree; pp135 = PolarPlot[2 Sin[ (t - al)], {t, 0, Pi}]
Show[pp0, pp135]
Narasimham