Re: ListContourPlot3D, no output
- To: mathgroup at smc.vnet.net
- Subject: [mg91890] Re: ListContourPlot3D, no output
- From: Jean-Marc Gulliet <jeanmarc.gulliet at gmail.com>
- Date: Fri, 12 Sep 2008 05:25:36 -0400 (EDT)
- Organization: The Open University, Milton Keynes, UK
- References: <gaar0a$13t$1@smc.vnet.net>
Adrian Lupascu wrote: > I am trying to use ListContourPlot3D on a table of the form {{x,y,z,f},...}. Execution does not give any error number and I get only a system of axis, with all the ranges {0,1}. I made sure that the table is properly formatted. > I am really puzzled. You should post an actual example of a command that does not work on your system. The following works fine on mine: In[1]:= $Version Short[data = Flatten[Table[{x, y, z, RandomReal[{-1, 1}]}, {x, -2, 8}, {y, 1, 10}, {z, 10}], 2], 3] Dimensions[data] ListContourPlot3D[data, Contours -> {0}] Out[1]= "6.0 for Mac OS X x86 (64-bit) (May 21, 2008)" Out[2]= {{-2,1,1,0.43068}, {-2,1,2,-0.317796}, {-2,1,3,-0.397626}, <<1095>>, {8,10,9,0.872865}, {8,10,10,-0.914065}} Out[3]= {1100, 4} Out[4] = [... Awesome 3D color graphic deleted :-) ...] Regards, -- Jean-Marc