| View previous topic :: View next topic |
| Author |
Message |
Pat Guest
|
Posted: Sat Aug 28, 2004 3:13 pm Post subject: C++ random number generator |
|
|
I am looking for a good random number generator (such as Uniform, Normal
distributions). It is better if RNG is written in C++.
Thanks.
|
|
| Back to top |
|
 |
Kai-Uwe Bux Guest
|
Posted: Sat Aug 28, 2004 5:29 pm Post subject: Re: C++ random number generator |
|
|
Pat wrote:
| Quote: | I am looking for a good random number generator (such as Uniform, Normal
distributions). It is better if RNG is written in C++.
Thanks.
|
Try
http://www.boost.org/libs/random/index.html
Best
Kai-Uwe Bux
|
|
| Back to top |
|
 |
AngleWyrm Guest
|
Posted: Sat Aug 28, 2004 10:51 pm Post subject: Re: C++ random number generator |
|
|
"Pat" <Pat (AT) Pat (DOT) com> wrote
| Quote: | I am looking for a good random number generator (such as Uniform, Normal
distributions). It is better if RNG is written in C++.
Thanks.
|
The boost random number library implements some of the best
http://www.boost.org/libs/random/
- :-
AngleWyrm
the C++ hat random container
http://home.comcast.net/~anglewyrm/hat.html
|
|
| Back to top |
|
 |
Cy Edmunds Guest
|
Posted: Sun Aug 29, 2004 1:44 am Post subject: Re: C++ random number generator |
|
|
"Pat" <Pat (AT) Pat (DOT) com> wrote
| Quote: | I am looking for a good random number generator (such as Uniform, Normal
distributions). It is better if RNG is written in C++.
Thanks.
|
Follow my sig to the UVS library.
--
Cy
http://home.rochester.rr.com/cyhome/
|
|
| Back to top |
|
 |
Pat Guest
|
Posted: Sun Aug 29, 2004 3:35 am Post subject: Re: C++ random number generator |
|
|
Thank you.
"Pat" <Pat (AT) Pat (DOT) com> ¦b¶l¥ó news:4130a11a_1 (AT) rain (DOT) i-cable.com ¤¤¼¶¼g...
| Quote: | I am looking for a good random number generator (such as Uniform, Normal
distributions). It is better if RNG is written in C++.
Thanks.
|
|
|
| Back to top |
|
 |
Yakov Guest
|
Posted: Mon Aug 30, 2004 8:50 pm Post subject: Re: C++ random number generator |
|
|
Hi,
| Quote: | I am looking for a good random number generator (such as Uniform, Normal
distributions). It is better if RNG is written in C++.
|
I assume you something close to "real" random.
In this case, u should look for the crypto services at your OS's sdk.
And the best is, if u r using an Intel chipset, use its hardware rng -
http://www.google.com/search?q=intel+rng
Yakov
|
|
| Back to top |
|
 |
|