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?
|
|
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) |
||||||||
|
|
|
Well, I figured it out. Apparently there is a builtin (?) function called rand:
If someone answers with a more detailed answer, I'll mark that as the correct answer. |
||||
|
|
|
Don't forget to seed the RNG with srand() first. |
||||
|
|
|
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. |
||
|
|
