MathGroup Archive 2001

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

Search the Archive

Re: ListPlot Axes

  • To: mathgroup at smc.vnet.net
  • Subject: [mg30551] Re: [mg30537] ListPlot Axes
  • From: BobHanlon at aol.com
  • Date: Wed, 29 Aug 2001 01:39:56 -0400 (EDT)
  • Sender: owner-wri-mathgroup at wolfram.com

In a message dated 2001/8/28 5:18:45 AM, jkarpick at stanford.edu writes:

>I've made a ListPlot using a Table command, for example:
>  ListPlot3D[Table[Sin[x+y],{x,-1,-0.2,0.1},{y,0,1,0.1}]];
>
>Is there any way to get Mathematica to use the x and y values I gave as
>the labels for the x and y axes?  The above command will have 1-9 for its
>x-axis and 1-11 for its y-axis.
>

Needs["Graphics`Graphics3D`"];

ListSurfacePlot3D[
    Table[{x, y, Sin[x+y]},
      {x,-1,-0.2,0.1},{y,0,1,0.1}], 
    Axes -> True];


Bob Hanlon
Chantilly, VA  USA


  • Prev by Date: Is there a faster way?
  • Next by Date: Re: Exporting code
  • Previous by thread: Re: ListPlot Axes
  • Next by thread: Re: ListPlot Axes