Re: 3D Plots
- To: mathgroup at smc.vnet.net
- Subject: [mg43902] Re: 3D Plots
- From: sean_incali at yahoo.com (sean kim)
- Date: Fri, 10 Oct 2003 03:06:25 -0400 (EDT)
- References: <bm2to6$6of$1@smc.vnet.net>
- Sender: owner-wri-mathgroup at wolfram.com
hello ListPlot3D will do this. you have to have an array or list of lists with three values in them. like { {w1, i1, v1}, {w2, i2, v2}... {wn, in, vn}} t1 = Table[{i^2, 4 i^2 + i^3, i^3}, {i, 40}]; ListPlot3D[t1, PlotLabel -> t1, AxesLabel -> {x, y}, Mesh -> False] good luck sean Ch Akpovo <akpovo at lmfp.nhmfl.gov> wrote in message news:<bm2to6$6of$1 at smc.vnet.net>... > Hello to all, > I have an experimental data of spectrum in the form {wavelength, > intensity} at different voltage on the PMT. I would like to create a 3D > plot of the data. Can anyone help me?