Re: plotting several 3D-functions
- To: mathgroup at smc.vnet.net
- Subject: [mg39080] Re: plotting several 3D-functions
- From: Jens-Peer Kuska <kuska at informatik.uni-leipzig.de>
- Date: Wed, 29 Jan 2003 03:35:14 -0500 (EST)
- Organization: Universitaet Leipzig
- References: <b15pjk$evm$1@smc.vnet.net>
- Reply-to: kuska at informatik.uni-leipzig.de
- Sender: owner-wri-mathgroup at wolfram.com
Hi,
Block[{$DisplayFunction = Identity},
g1 = Plot3D[Sin[x*y], {x, 0, Pi}, {y, 0, Pi}];
g2 = Plot3D[Cos[x*y], {x, 0, Pi}, {y, 0, Pi}];
];
Show[g1, g2];
Regards
Jens
lhuv wrote:
>
> hi,
> maybe it's a foolish question, but i'm new to mathematica:
>
> i want to plot (using Plot3D of course) at least 2 3D-functions into the
> same diagram. how to i have to handle this?
>
> thanx in regard.
>
> lhuv