Re: 3 lines of code which crashes Mathematica every time
- To: mathgroup at smc.vnet.net
- Subject: [mg76509] Re: 3 lines of code which crashes Mathematica every time
- From: Roman <rschmied at gmail.com>
- Date: Wed, 23 May 2007 05:26:13 -0400 (EDT)
- References: <f2u59a$k37$1@smc.vnet.net>
Nasser, On my computer, your code runs fine. It seems you need about 2.5 GB of RAM to run it, though, and it takes more than 5 minutes. Roman. On May 22, 9:14 am, "Nasser Abbasi" <n... at 12000.org> 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