template <class URBG>
result_type operator()(URBG& g); // (1)
template <class URBG>
result_type operator()(URBG& g, const param_type& parm); // (2)
概要
- (1) : コンストラクタで指定されたパラメータに基いて、乱数生成を行う
- (2) : コンストラクタで設定されたパラメータの代わりに、
param
を乱数生成のパラメータとして使用して乱数生成を行う
戻り値
指定されたパラメータに基いて、ガンマ分布したランダムな値を生成して返す。
計算量
償却定数時間(g()
の呼び出し回数)
例
#include <iostream>
#include <random>
int main()
{
std::random_device seed_gen;
std::default_random_engine engine(seed_gen());
// (1)
{
std::gamma_distribution<> dist(1.0, 1.0);
for (int i = 0; i < 5; ++i) {
double result = dist(engine);
std::cout << result << std::endl;
}
}
// (2) パラメータを渡すバージョン
std::cout << std::endl;
{
using dist_type = std::gamma_distribution<>;
dist_type dist;
for (int i = 0; i < 5; ++i) {
dist_type::param_type param(1.0, 1.0);
double result = dist(engine, param);
std::cout << result << std::endl;
}
}
}
出力例
0.879315
0.237533
0.60763
0.0701009
0.486791
1.23299
0.127446
0.203543
0.0698449
6.94569
バージョン
言語
- C++11
処理系
- Clang: ??
- GCC: 4.7.2 ✅
- ICC: ??
- Visual C++: ??
参照
- P0346R1 A
<random>
Nomenclature Tweak- URNGをURBGに変更