gamma_distribution::gamma_distribution
分布を作成します。
gamma_distribution(result_type alpha0 = result_type(1.0));
result_type beta0 = result_type(1.0));
explicit gamma_distribution(const param_type& par0);
パラメーター
alpha0
アルファ分布パラメーター。beta0
ベータ分布パラメーター。par0
分布の作成に使用されるパラメーター パッケージ。
解説
前提条件: 0.0 < alpha0
1 つ目のコンストラクターは、格納されている値 stored_alpha と stored_beta にそれぞれ alpha0 と beta0 の値を保持するオブジェクトを作成します。
2 つ目のコンストラクターは、格納されているパラメーターが par0 から初期化されるオブジェクトを作成します。
使用例
// std_tr1__random__gamma_distribution_construct.cpp
// compile with: /EHsc
#include <random>
#include <iostream>
typedef std::ranlux64_base_01 Myeng;
typedef std::gamma_distribution<double> Mydist;
int main()
{
Myeng eng;
Mydist dist(1.5);
Mydist::input_type engval = eng();
Mydist::result_type distval = dist(eng);
distval = distval; // to quiet "unused" warnings
engval = engval;
std::cout << "alpha == " << dist.alpha() << std::endl;
dist.reset(); // discard any cached values
std::cout << "a random value == " << dist(eng) << std::endl;
std::cout << "a random value == " << dist(eng) << std::endl;
std::cout << "a random value == " << dist(eng) << std::endl;
return (0);
}
必要条件
ヘッダー : <random>
名前空間: std