Mersenne Twister random number generator
[詳解]
#include <core.hpp>
|
|
RNG_MT19937
(unsigned s) |
|
void |
seed
(unsigned s) |
|
unsigned |
next
() |
|
|
operator int
() |
|
|
operator unsigned
() |
|
|
operator float
() |
|
|
operator double
() |
|
unsigned |
operator()
(unsigned N) |
|
unsigned |
operator()
() |
|
int |
uniform
(int a, int b) |
|
は,[a,b] の範囲から一様に分布する整数の乱数を返します.
|
|
float |
uniform
(float a, float b) |
|
a,b)の範囲から一様に分布する浮動小数点乱数を返します。
|
|
double |
uniform
(double a, double b) |
|
一様に分布する倍精度浮動小数点型乱数を [a,b) の範囲から返します.
|
|
このクラス詳解は次のファイルから抽出されました: