Results 1 to 10 of 21
im having trouble finding any concrete random number algorithms on the web. does anyone have any links or even books to refer me?
ive tried the library as well but ...
Enjoy an ad free experience by logging in. Not a member yet? Register.
- 06-21-2005 #1Just Joined!
- Join Date
- Jun 2005
- Posts
- 70
random number algorithm
im having trouble finding any concrete random number algorithms on the web. does anyone have any links or even books to refer me?
ive tried the library as well but i cant seem to find anything...
- 06-21-2005 #2
Maybe this Google search might help? Also maybe you can use what the host OS has to offer?
- 06-21-2005 #3Linux Newbie
- Join Date
- Aug 2004
- Posts
- 220
are you trying to find one, or make one?
- 06-21-2005 #4Just Joined!
- Join Date
- Feb 2005
- Location
- Delft, Holland
- Posts
- 95
There is no such bloody thing as a random number, but how about the Mersenne Twister?
- 06-21-2005 #5Linux Newbie
- Join Date
- Aug 2004
- Posts
- 220
what about a coin, die, spinner?
Originally Posted by Morgoth
- 06-21-2005 #6Just Joined!
- Join Date
- Jun 2005
- Posts
- 70
i am using CAD for VLSI and I need a random number generator in my design. The tools and the board that I am using do not include any random number generators and so i need to make one myself. I was looking on the web for some algorithms but have had trouble finding sites that properly explain themselves.
and morgoth, there may not be random numbers but as long as the numbers are equally distributed after simulation then I will be happy.
Once I find an algorithm that I can understand then I will attempt to implement it on the board and simulate.
thanks
- 06-22-2005 #7Just Joined!
- Join Date
- Feb 2005
- Location
- Delft, Holland
- Posts
- 95
@judhkqkhsd, have you looked at: Mersenne Twister
Since the coin follows the laws of nature, the outcome can be predicted with 100% accuracy when all the variables are known, examples of these variables are air density, the distance to the ground, the weight and size of the coin, the used force, the spin, etc.what about a coin, die, spinner? Smile
These variables can never be measured with 100% accuracy though ("the act of observing disturbs the observed", as that very cool Dr Seuss-like rhyme on quantum mechanics went) so we can never predict the exact outcome, and therefor it is only "random" from our flawed point of view.
With computers however, everything is measurable, so everything can be determined with 100% accuracy, and therefor computers can never act randomly (until Bill Gates came along, after that they crashed randomly
)
- 06-22-2005 #8Just Joined!
- Join Date
- Mar 2005
- Location
- South Africa
- Posts
- 88
The maths involved in random number gerneration is rather involved. Would in not be possible for you to use another program (c++, matlab/octave ...) to generate the random numbers and then read them from a text file in your application?
- 06-22-2005 #9Just Joined!
- Join Date
- Jun 2005
- Posts
- 70
i had thought of that but the number generator needs to be apart of the design (using the same data from the text file is not sufficient).
I guess i'll just keep looking.
- 06-22-2005 #10Linux Newbie
- Join Date
- Aug 2004
- Posts
- 220
just to be sure, you are trying to write a piece of code for a persudo-random number generator? or are you trying to make a piece of hardware that does this?


Reply With Quote
