Re: 3D of combine plot
- To: mathgroup at smc.vnet.net
- Subject: [mg116474] Re: 3D of combine plot
- From: Bob Hanlon <hanlonr at cox.net>
- Date: Wed, 16 Feb 2011 04:37:28 -0500 (EST)
k = {0, 2, 3, 4};
Plot[Evaluate[
Table[
Tooltip[2 Sin[x + p] + x, p],
{p, k}]],
{x, 0, 15}]
ParametricPlot3D[Evaluate[
Table[
{x, p, 2 Sin[x + p] + x},
{p, k}]],
{x, 0, 15},
BoxRatios -> {GoldenRatio, 1, 1}]
Bob Hanlon
---- Gazi Habiba Akter <gazihabiba02 at gmail.com> wrote:
=============
Hi,
I have 4 plots for different value of k (0,2,3,4). I combined all
plots by Show. But i want the combine plot in 3D (in simple form).How
can i get this.i use Mathematica 7.
Thanks,
Gazi