|
[Date Index]
[Thread Index]
[Author Index]
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
Prev by Date:
A wrong definite integral in 5.0?
Next by Date:
Re: unevaluated expression
Previous by thread:
Re: A wrong definite integral in 5.0?
Next by thread:
Re: Slow work of some List functions in Mathematica 6
|