MathGroup Archive 2009

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

Search the Archive

ListContourPlot3D bug?

  • To: mathgroup at smc.vnet.net
  • Subject: [mg102285] ListContourPlot3D bug?
  • From: markus <markusg.phys at googlemail.com>
  • Date: Tue, 4 Aug 2009 04:27:23 -0400 (EDT)

Hi,

I think I've found a bug in the ListContourPlot3D function (Mathematica 7.01):
the following command should give a cylinder along the z-axis:

ListContourPlot3D[
 Table[x^2 + y^2, {x, -1, 1, 0.1}, {y, -1, 1, 0.1}, {z, -1, 1, 0.1}],
 Contours -> {0.1}, Mesh -> None, AxesLabel -> {x, y, z}]

However, the cylinder is aligned along the x-axis, which is not
correct.

The command

ContourPlot3D[x^2 + y^2, {x, -1, 1}, {y, -1, 1}, {z, -1, 1},
 Contours -> {0.1}, Mesh -> None, AxesLabel -> {x, y, z}]

gives the correct output.
Of course, for a single plot like above, the solution would be just to
exchange the axes label. But this becomes awkward when you, for
example, want to combine multiple plots (via Show).

-Markus


  • Prev by Date: Strong memory consumption by List-plotting functions
  • Next by Date: No more memory available.
  • Previous by thread: Re: Strong memory consumption by List-plotting functions
  • Next by thread: Re: ListContourPlot3D bug?