Re: Plot Question
- To: mathgroup at smc.vnet.net
- Subject: [mg50851] Re: Plot Question
- From: Martin Johansson <martin.n.johansson_LookMa_NoSpam_ at ericsson.com>
- Date: Fri, 24 Sep 2004 04:41:25 -0400 (EDT)
- References: <ciua34$90c$1@smc.vnet.net>
- Sender: owner-wri-mathgroup at wolfram.com
Dana DeLouis wrote:
>
> Appears to me that PiScale can not divide any lower than Pi/2.
[...]
I checked the code for Graphics`Graphics` and found that,
with UnitScale instead of PiScale, you can get lower divisions
than Pi/2 (PiScale is implemented using UnitScale):
UnitScale[0, Pi, Pi/2, 5]
{0., 0}
{1.5707963267948966, Pi/2}
{3.141592653589793, Pi}
UnitScale[0, Pi, Pi/4, 5]
{0., 0},
{0.7853981633974483, Pi/4},
{1.5707963267948966, Pi/2},
{2.356194490192345, 3 Pi/4},
{3.141592653589793, Pi}
Maybe that's an OK solution?
Martin