I am new to Scala and am trying to get a list of random double values:
The thing is, when I try to run this, it takes way too long compared to its Java counterpart. Any ideas on why this is or a suggestion on a more efficient approach?
def random: Double = java.lang.Math.random()
var f = List(0.0)
for (i <- 1 to 200000)
( f = f ::: List(random*100))
f = f.tail
f = (random * 100) :: f– Kris Nuttycombe Mar 14 '11 at 20:35var f: List[Double] = Nil- and there's no need to def random, just import it:import java.lang.Math.random– Kris Nuttycombe Mar 14 '11 at 20:37java.lang.Math.random()is not especially random (see: http://alife.co.uk/nonrandom/). A good alternative (there are others) is http://www.cs.gmu.edu/~sean/research/mersenne/MersenneTwisterFast.java. – Nicolas Payette Mar 14 '11 at 21:10scala.util.Random, no need to use the Java version. – Jesper Mar 15 '11 at 15:21scala.util.Randomis just a wrapper forjava.util.Random(). – Nicolas Payette Mar 17 '11 at 17:33