std::binomial_distribution::binomial_distribution
来自cppreference.com
< cpp | numeric | random | binomial distribution
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
explicit binomial_distribution( IntType t = 1, double p = 0.5 ); |
(1) | (C++11 起) |
explicit binomial_distribution( const param_type& params ); |
(2) | (C++11 起) |
构建新的发行对象。第一个版本使用
t
和p
的分布参数,第二个版本使用params
的分布参数.原文:
Constructs new distribution object. The first version uses
t
and p
as the distribution parameters, the second version uses params
as the distribution parameters.[编辑] 参数
t | - | “T”分布参数(试验)
原文: the t distribution parameter (number of trials) |
p | - | “P”分布参数(概率的审判产生true)
原文: the p distribution parameter (probability of a trial generating true) |
params | - | 的分布参数设定
|
[编辑] 注释
要求0 ≤ p ≤ 10 ≤ t.