MathGroup Archive 2009

[Date Index] [Thread Index] [Author Index]

Search the Archive

Re: reversing axes orientation

  • To: mathgroup at smc.vnet.net
  • Subject: [mg97394] Re: [mg97352] reversing axes orientation
  • From: "David Park" <djmpark at comcast.net>
  • Date: Thu, 12 Mar 2009 02:20:51 -0500 (EST)
  • References: <32525990.1236763850768.JavaMail.root@m02>

To obtain the x tick scale with minor ticks I would use the CustomTicks
command in the Presentations package as follows:

Needs["Presentations`Master`"]

xticks = CustomTicks[Rescale[#, {1, 0}] &, {0., 1., .2, 5}];
Draw2D[
 {Draw[Rescale[x, {1, 0}], {x, 0, 1}]},
 Axes -> True,
 Ticks -> {xticks, Automatic}]


David Park
djmpark at comcast.net
http://home.comcast.net/~djmpark/  


From: Joerg [mailto:schaber at biologie.hu-berlin.de] 

Hi,

is there a simple way to reverse the orientation
of the axes of a plot, e.g. in Plot[x, {x, 1, 0}]
really plot from 1 to 0 (from left to right)?

Thanks,

joerg




  • Prev by Date: Re: Notebook that auto-executes when opened?
  • Next by Date: Re: reversing axes orientation
  • Previous by thread: reversing axes orientation
  • Next by thread: Re: reversing axes orientation