Re: [Mathematica 6]3 lines of code which crashes Mathematica every time
- To: mathgroup at smc.vnet.net
- Subject: [mg76524] Re: [mg76449] [Mathematica 6]3 lines of code which crashes Mathematica every time
- From: János <janos.lobb at yale.edu>
- Date: Wed, 23 May 2007 05:34:00 -0400 (EDT)
- References: <200705220657.CAA20172@smc.vnet.net>
On May 22, 2007, at 2:57 AM, Nasser Abbasi wrote: > > (* WARNING, SAVE ALL YOUR WORK BEFORE RUNNING THIS *) > > m = 100; n = 70; > A = Table[Table[RandomReal[{0, 100.}], {n}], {m}]; > ListPlot3D[A, Mesh -> None, InterpolationOrder -> 0, ColorFunction -> > "SouthwestColors", Filling -> Axis] > > > (*Now Mathematica will spin for sometime then disappear.*) > > Nasser > Not in 5.2 :) After some modification, this one: In[17]:= m = 100; n = 70; A = Table[Table[Random[Real, {0, 100.}], {n}], {m}]; ListPlot3D[A, Mesh -> False, ColorFunction -> Hue] runs in no time. J=E1nos ---------------------------------------------- Trying to argue with a politician is like lifting up the head of a corpse. (S. Lem: His Master Voice)
- References:
- [Mathematica 6]3 lines of code which crashes Mathematica every time
- From: "Nasser Abbasi" <nma@12000.org>
- [Mathematica 6]3 lines of code which crashes Mathematica every time