Re: Easy way to 're-order' the axes in Plot3D
- To: mathgroup at smc.vnet.net
- Subject: [mg70144] Re: Easy way to 're-order' the axes in Plot3D
- From: "ben" <benjamin.friedrich at gmail.com>
- Date: Thu, 5 Oct 2006 03:33:00 -0400 (EDT)
- References: <eg01ul$7uv$1@smc.vnet.net>
Hi
Maybe a simple permutation of the axes helps?
Permute[{x_,y_,z_}]:={z,y,x};
Plot3D[{x[t],y[t],z[t]}//Permute//Evaluate,{t,0,tmax}];
Bye
Ben
passwd9 schrieb:
> Hi,
>
> I've got this nice Plot3D surface, but unfortunately I want one of the
> axes to run from 200 to 1, instead of the natural 1 to 200. I've tried
> {S, 200, 1} instead of {S, 1, 200}, but that didn't work. The
> function is quite involved and I'd rather not change it.
>
> Effectively what I want to do is to mirror the whole surface in a
> vertical plane.
>
> Can anyone help me and think of a [hopefully simple] way to do this?
>
> Many thanks,
> David.