explicit poisson_distribution(double mean = 1.0); // (1)
poisson_distribution() : poisson_distribution(1.0) {} // (1) C++20
explicit poisson_distribution(double mean); // (2) C++20
explicit poisson_distribution(const param_type& parm); // (3)
概要
- (1) : デフォルトコンストラクタ
- C++17まで : ポワソン分布の平均値
mean
を受け取るコンストラクタ - C++20 : ポワソン分布の平均値
mean = 1.0
として(2)に委譲。
- C++17まで : ポワソン分布の平均値
- (2) : ポワソン分布の平均値
mean
を受け取るコンストラクタ - (3) : パラメータオブジェクトを受け取るコンストラクタ。
param_type
は、このクラスの(1)のコンストラクタと同じオーバーロードを持ち、それらのコンストラクタのパラメータを保持している。このコンストラクタでは、param
オブジェクトが持っているパラメータを、このクラスのコンストラクタに転送する。
要件
- (2) :
mean > 0
であること
例
#include <iostream>
#include <random>
int main()
{
std::random_device seed_gen;
std::default_random_engine engine(seed_gen());
// (2) パラメータを個別に指定する
{
// 平均値1.0で分布させる
std::poisson_distribution<> dist(1.0);
for (int i = 0; i < 10; ++i) {
std::cout << dist(engine) << " ";
}
}
std::cout << std::endl;
// (3) パラメータを通して範囲指定する
{
using dist_type = std::poisson_distribution<>;
// 平均値1.0で分布させる
dist_type::param_type param(1.0);
dist_type dist(param);
for (int i = 0; i < 10; ++i) {
std::cout << dist(engine) << " ";
}
}
}
出力例
3 0 0 3 1 1 1 0 0 2
1 3 1 1 0 2 2 6 0 0
バージョン
言語
- C++11
処理系
- Clang: ??
- GCC: 4.7.2 ✅
- ICC: ??
- Visual C++: ??