Re: Plot -> axes inversion
- To: mathgroup at smc.vnet.net
- Subject: [mg64657] Re: [mg64609] Plot -> axes inversion
- From: Bob Hanlon <hanlonr at cox.net>
- Date: Sat, 25 Feb 2006 02:53:18 -0500 (EST)
- Reply-to: hanlonr at cox.net
- Sender: owner-wri-mathgroup at wolfram.com
Plot[1/Gamma[x],{x,-4,4},
AxesLabel->{"x","y"}];
Show[
Plot[1/Gamma[x],{x,-4,4},
DisplayFunction->Identity]/.
{x_?NumericQ,y_?NumericQ,r___}:>{y,x,r},
AxesLabel->{"y","x"},
DisplayFunction->$DisplayFunction,
AspectRatio->1];
Bob Hanlon
>
> From: "bd satish" <bdsatish at gmail.com>
To: mathgroup at smc.vnet.net
> Subject: [mg64657] [mg64609] Plot -> axes inversion
>
>
> Hi buddies ,
>
> 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 ?
>
> How about the plot inversion option for Plot3D[ . ] ?
>
>
>