gamma_distribution::operator()
乱数値を返します。
template<class Engine>
result_type operator()(Engine& eng);
template<class Engine>
result_type operator()(Engine& eng,
const param_type& par0);
パラメーター
Engine
乱数エンジンの型。eng
乱数エンジン。par0
乱数値を返すために使用されるパラメーター パッケージ。
解説
1 つ目のメンバー関数は、一様に分布する乱数値のソースとしてエンジン eng を使用し、確率密度 pr(x) = 1 / gamma(stored_alpha) * x^(stored_alpha - 1) * e^(-x) で値を返します。
2 つ目のメンバー関数は、1 つ目のメンバー関数と動作は同じですが、par0 に格納されているパラメーターを使用する点が異なります。
使用例
// std_tr1__random__gamma_distribution_operator_fn.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