Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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
share|improve this question
5  
By using ::: in this fashion, you're rebuilding the entire list with each iteration. Ideally, you'd actually be using a lazy data structure, but if you really want a list use f = (random * 100) :: f – Kris Nuttycombe Mar 14 '11 at 20:35
Also, start with var 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:37
BTW, java.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:10
There's also a scala.util.Random, no need to use the Java version. – Jesper Mar 15 '11 at 15:21
@Jesper : Right. But it should still be noted that scala.util.Random is just a wrapper for java.util.Random(). – Nicolas Payette Mar 17 '11 at 17:33

7 Answers

up vote 19 down vote accepted

You can also achieve it like this:

List.fill(200000)(math.random)

the same goes for e.g. Array ...

Array.fill(200000)(math.random)

etc ...

share|improve this answer
That's the Scalarific way to do it, "Scalarific" being the word I have coined to mean "conforming to the commonly-accepted Scala idiom", in parallel with "Pythonic" -- nominations for any alternative words gladly accepted. – Malvolio Mar 14 '11 at 22:28
2  
@Malvolio: how about "Scalar?" :) – Matt Ball Mar 16 '11 at 22:11
@Malvolio: I nominate "Scalacious" – Luigi Plinge Jun 15 '11 at 22:43

You could construct an infinite stream of random doubles:

def randomList(): Stream[Double] = Stream.cons(math.random, randomList)

val f = randomList().take(200000)

This will leverage lazy evaluation so you won't calculate a value until you actually need it. Even evaluating all 200,000 will be fast though. As an added bonus, f no longer needs to be a var.

share|improve this answer
Thanks Mr Byrne, any ideas as to why my dying so badly? I think it is because of the ::: resulting in generating a new list each time and as such being a killer on the cpu? – user659486 Mar 14 '11 at 20:45
Yes, you are correct. You are rebuilding the entire list each iteration. – dbyrne Mar 14 '11 at 21:01

Another possibility is:

val it = Iterator.continually(math.random)
it.take(200000).toList

Stream also has a continually method if you prefer.

share|improve this answer
Use math.random and it's the answer I would have given :) – Kevin Wright Mar 14 '11 at 21:34
@Kevin: Of course. Changed. My excuse is that I usually use a Mersenne Twister instead, anyway... – Nicolas Payette Mar 16 '11 at 22:00

First of all, it is not taking longer than java because there is no java counterpart. Java does not have an immutable list. If it did, performance would be about the same.

Second, its taking a lot of time because appending lists have linear performance, so the whole thing has quadratic performance.

Instead of appending, prepend, which had constant performance.

share|improve this answer

if your using mutable state anyways you should use a mutable collection like buffer which you can add too with += (which then would be the real counterpart to java code).

but why dont u use list comprehension?

val f = for (_ <- 1 to 200000) yield (math.random * 100)

by the way: var f = List(0.0) ... f = f.tail can be replaced by var f: List[Double] = Nil in your example. (no more performance but more beauty ;)

share|improve this answer
One minor adjustment: val f = for (_ <- 1 to 200000) yield (math.random * 100) – Onorio Catenacci Mar 14 '11 at 20:45
Thanks Martin, very succint and clean alternative. – user659486 Mar 14 '11 at 20:46
@Onorio: edited ;) – Martin Ring Mar 14 '11 at 20:49
Hey thanks Martin, but I notice something about that alternative - If I attempt to pass that list to an actor it takes forever (over a list of 20 doubles) - but my original code does not over a list of size 20. – user659486 Mar 14 '11 at 22:15

Yet more options! Tail recursion:

def randlist(n: Int, part: List[Double] = Nil): List[Double] = {
  if (n<=0) part
  else randlist(n-1, 100*random :: part)
}

or mapped ranges:

(1 to 200000).map(_ => 100*random).toList
share|improve this answer

Looks like you want to use Vector instead of List. List has O(1) prepend, Vector has O(1) append. Since you are appending, but using concatenation, it'll be faster to use Vector:

def random: Double = java.lang.Math.random()
var f: Vector[Double] = Vector()
for (i <- 1 to 200000)
  f = f :+ (random*100)

Got it?

share|improve this answer
Does it really matter if your random numbers come out backwards? – Rex Kerr Mar 15 '11 at 8:58
PROBABLY not. But I'm just showing it all. – Anonymous Mar 15 '11 at 15:46
Thanks for this. The sequence does not matter (in my instance) as they will all be passed to actors for selection sort anyway. – user659486 Mar 16 '11 at 21:46

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.