Namespaces
Variants

std::gamma_distribution<RealType>:: gamma_distribution

From cppreference.net
gamma_distribution ( ) : gamma_distribution ( 1.0 ) { }
(1) (自 C++11 起)
explicit gamma_distribution ( RealType alpha, RealType beta = 1.0 ) ;
(2) (自 C++11 起)
explicit gamma_distribution ( const param_type & params ) ;
(3) (自 C++11 起)

构造一个新的分布对象。

2) 使用 alpha beta 作为分布参数。
3) 使用 params 作为分布参数。

参数

alpha - α 分布参数(形状参数)
beta - β 分布参数(尺度参数)
params - 分布参数集合

缺陷报告

下列行为变更缺陷报告被追溯应用于先前发布的C++标准。

缺陷报告 适用范围 发布时的行为 正确行为
P0935R0 C++11 默认构造函数为显式 改为隐式