vote up 4 vote down star
1

In Ruby, how do you generate a random number between 0 and n? In .NET you can create a Random object, does something like this exist for Ruby?

flag

4 Answers

vote up 14 vote down check

What is wrong with rand(range) ?

If you needed a random integer to simulate a roll of a six-sided die, you'd use: 1 + rand(6). A roll in craps could be simulated with 2 + rand(6) + rand(6).

Finally, if you just need a random float, just call rand with no arguments.

(From first result of google search: Ruby Random Numbers)

link|flag
Thanks, VonC. I eventually did google for the answer, but I looked here for and didn't find the answer, so I thought it might be a useful addition. That's the purpose of SO, right? – Mark A. Nicolosi Oct 13 '08 at 18:12
No problem, you have SO perfectly figured ;) – VonC Oct 13 '08 at 18:21
Yup, SO is just a place for people too lazy to use google. – Justin Nov 5 at 18:05
What's funny is that this post is now the first Google result. – ahsteele Nov 17 at 17:39
vote up 0 vote down

Well, I figured it out. Apparently there is a builtin (?) function called rand:

rand(n + 1)

If someone answers with a more detailed answer, I'll mark that as the correct answer.

link|flag
Yes, it's builtin in the Kernel module. – Christoph Schiessl Oct 13 '08 at 19:18
Ahh, thanks Chrisoph. – Mark A. Nicolosi Oct 13 '08 at 19:43
vote up 2 vote down

Don't forget to seed the RNG with srand() first.

link|flag
1  
What happens if you don't call srand()? – Alex B Oct 17 '08 at 14:18
vote up 1 vote down

Apparently srand is called when the ruby interpreter is started.

Therefore unless you have a specific need to reset the seed - extra calls to srand are unnecessary.

link|flag

Your Answer

Get an OpenID
or

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