Re: Slow work of some List functions in Mathematica 6
- To: mathgroup at smc.vnet.net
- Subject: [mg77214] Re: Slow work of some List functions in Mathematica 6
- From: ucervan at gmail.com
- Date: Tue, 5 Jun 2007 07:02:52 -0400 (EDT)
- References: <f36dhc$74s$1@smc.vnet.net>
For discrete data, as in image processing, the most optimal way is to either use ArrayPlot[] or Raster[]. For continuous data, and if you do not care about using Interpolation, arbitrary MeshFunctions, RegionFunction, etc, use ListPlot3D[data,MaxPlotPoints- >Infinity,PerformanceGoal->"Speed"], the MaxPlotPoints->Infinity will use all your data, the default value of MaxPlotPoints will downsample. Also, notice that the visualization functions ListXXX are vertex based, which means that you will not get the discreet steps that V5.X used to produce. -Ulises Cervantes WRI