Re: Re: ListDensityPlot takes forever and then some
- To: mathgroup at smc.vnet.net
- Subject: [mg85019] Re: [mg84993] Re: ListDensityPlot takes forever and then some
- From: Laszlo Sturmann <lschara at sonic.net>
- Date: Thu, 24 Jan 2008 04:42:34 -0500 (EST)
- References: <flsla2$plh$1@smc.vnet.net> <200801220654.BAA13214@smc.vnet.net>
Frank Iannarilli wrote:
> SetOptions[ListDensityPlot,PerformanceGoal->"Speed",MaxPlotPoints->\
> Infinity,ColorFunction->GrayLevel];
>
>
>
Thanks Frank and everyone else who replied.
Ver.5.2 is still considerably faster than 6.0.1 in this respect, even
after setting the PerformanceGoal to speed.
It took 12 secs to show a 500x500 density plot in 6.0.1 and less than
0.3 secs in 5.2.
T = Table[N[Sin[i/50] Cos[j/50]], {i, 1, 500}, {j, 1, 500}];
SetOptions[ListDensityPlot,PerformanceGoal->"Speed",MaxPlotPoints->\
Infinity,ColorFunction->GrayLevel];
Timing[ListDensityPlot[T,Mesh->False]]
ArrayPlot is fast but the result looks different.
Laszlo
- References:
- Re: ListDensityPlot takes forever and then some
- From: Frank Iannarilli <frankeye@cox.net>
- Re: ListDensityPlot takes forever and then some