std::cauchy_distribution<RealType>::operator()
来自 cppreference.com
< cpp | numeric | random | cauchy distribution
template< class Generator > result_type operator()( Generator& g ); |
(1) | (自 C++11) |
template< class Generator > result_type operator()( Generator& g, const param_type& params ); |
(2) | (自 C++11) |
生成根据关联概率函数分布的随机数。熵通过调用 g.operator() 获取。
第一个版本使用关联的参数集,第二个版本使用 params。关联的参数集不会被修改。
[编辑] 参数
g | - | 均匀随机位生成器对象 |
params | - | 要使用的分布参数集,代替关联参数集 |
类型要求 | ||
-Generator 必须满足 UniformRandomBitGenerator 的要求。 |
[编辑] 返回值
生成的随机数。
[编辑] 复杂度
g.operator() 的摊销常数调用次数。