MathGroup Archive 2006

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

Search the Archive

Re: Plot -> axes inversion

  • To: mathgroup at smc.vnet.net
  • Subject: [mg64647] Re: Plot -> axes inversion
  • From: Bill Rowe <readnewsciv at earthlink.net>
  • Date: Sat, 25 Feb 2006 02:53:08 -0500 (EST)
  • Sender: owner-wri-mathgroup at wolfram.com

On 2/24/06 at 12:18 AM, bdsatish at gmail.com (bd satish) wrote:

>I have a plot :

>Plot[ 1/Gamma[x] , { x, -4 ,4 } ,AxesLabel - > { "x" , "y" }]

>I want to interchange  the  x-  and y-axes. (A kinda rotatation  by 90
>degrees ). Which option should I use ?

I think the simplest way to do this would be to use ParametricPlot instead of Plot, i.e.,

ParametricPlot[{1/Gamma[x], x}, {x, -4, 4}, AxesLabel->{"x", "y"}];
--
To reply via email subtract one hundred and four


  • Prev by Date: FindRoot & NDSolve
  • Next by Date: Re: finding the position of a pattern in list
  • Previous by thread: Re: Plot -> axes inversion
  • Next by thread: Re: Plot -> axes inversion