MathGroup Archive 2004

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

Search the Archive

Re: Plotting 3D points

  • To: mathgroup at smc.vnet.net
  • Subject: [mg47326] Re: Plotting 3D points
  • From: ppga at ono.com (Jose)
  • Date: Mon, 5 Apr 2004 05:23:10 -0400 (EDT)
  • References: <tevs6eu6zs5u@legacy>
  • Sender: owner-wri-mathgroup at wolfram.com

On 24 Mar 04 20:07:10 -0500 (EST), Kani wrote:
>Hi Friends,
>
>Can anyone please tell me, how to plot 3 dimentional plots in
>Mathematica, help appreciated. Thanks in Advance

I think the best start point is to use Plot3D. For example,
Plot3D[x^2+y^2,{x,0,3},{y,0,3}] will plot the paraboloid z=x^2+y^2.
As you can see if you have a surface z=f(x,y), you can plot it using
Plot3D[f(x,y),{x,a,b},{y,c,d}].
Also you can plot 3D surfaces using ParametricPlot3D. The prior
paraboloid can be plotted too using:
ParametricPlot3D[{u,v,u^2+v^2},{u,0,3},{v,0,3}]
Moreover, this functions have several options (draw axes or not, dra
box or not, so on). If you need some more information I can help you!
Wishes!


  • Prev by Date: Drawing random values
  • Next by Date: Mathematical character sets
  • Previous by thread: Drawing random values
  • Next by thread: Mathematical character sets