다음을 통해 공유


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
    임의의 값을 반환 하는 데 사용 하는 매개 변수 패키지입니다.

설명

엔진의 첫 번째 멤버 함수를 사용 하 여 eng 와 확률 밀도를 균일 하 게 분산된 된 임의 값 및 반환 값의 소스로 pr(x) = 1 / gamma(stored_alpha) * x^(stored_alpha - 1) * e^(-x).

저장 된 매개 변수를 사용 하 여 제외 하 고 두 번째 멤버 함수는 동작 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

참고 항목

참조

<random>

gamma_distribution Class