std::piecewise_constant_distribution
来自 cppreference.com
定义在头文件 <random> 中 |
||
template< class RealType = double > class piecewise_constant_distribution; |
(自 C++11 起) | |
std::piecewise_constant_distribution
生成随机浮点数,这些浮点数在若干个子区间 [b
i, b
i+1) 内均匀分布,每个子区间都有其自己的权重 w
i。区间边界集和权重集是此分布的参数。
i ≤ x <b
i+1,概率密度为
w i |
S (b i+1 - b i) |
std::piecewise_constant_distribution
满足 RandomNumberDistribution 的所有要求。
内容 |
[编辑] 模板参数
RealType | - | 生成器生成的結果类型。如果这不是 float、double 或 long double 之一,则效果未定义。 |
[编辑] 成员类型
成员类型 | 定义 |
result_type (C++11) |
RealType |
param_type (C++11) |
参数集的类型,请参见 RandomNumberDistribution。 |
[编辑] 成员函数
(C++11) |
构造新的分布 (公有成员函数) |
(C++11) |
重置分布的内部状态 (公有成员函数) |
生成 | |
(C++11) |
生成分布中的下一个随机数 (公有成员函数) |
特征 | |
返回分布参数 (公有成员函数) | |
(C++11) |
获取或设置分布参数对象 (公有成员函数) |
(C++11) |
返回可能生成的最小值 (公有成员函数) |
(C++11) |
返回可能生成的 最大值 (公有成员函数) |
[编辑] 非成员函数
(C++11)(C++11)(在 C++20 中删除) |
比较两个分布对象 (函数) |
(C++11) |
对伪随机数分布进行流输入和输出 (函数模板) |
[编辑] 示例
运行此代码
#include <iostream> #include <map> #include <random> #include <string> int main() { std::random_device rd; std::mt19937 gen(rd()); // 50% of the time, generate a random number between 0 and 1 // 50% of the time, generate a random number between 10 and 15 std::vector<double> i {0, 1, 10, 15}; std::vector<double> w {1, 0, 1}; std::piecewise_constant_distribution<> d(i.begin(), i.end(), w.begin()); std::map<int, int> hist; for (int n {}; n < 1e4; ++n) ++hist[d(gen)]; for (std::cout << std::hex << std::uppercase; auto [x, y] : hist) std::cout << x << ' ' << std::string(y / 100, '*') << '\n'; }
可能的输出
0 ************************************************** A ********** B ********* C ********* D ********** E *********
[编辑] 参考
- C++23 标准 (ISO/IEC 14882:2024)
- 28.5.9.6.2 类模板 piecewise_constant_distribution [rand.dist.samp.pconst] (p: 1421-1422)
- C++20 标准 (ISO/IEC 14882:2020)
- 29.6.9.6.2 类模板 piecewise_constant_distribution [rand.dist.samp.pconst] (p: 1207-1208)
- C++17 标准 (ISO/IEC 14882:2017)
- 29.6.8.6.2 类模板 piecewise_constant_distribution [rand.dist.samp.pconst] (p: 1098-1100)
- C++14 标准 (ISO/IEC 14882:2014)
- 26.5.8.6.2 类模板 piecewise_constant_distribution [rand.dist.samp.pconst] (p: 962-964)
- C++11 标准 (ISO/IEC 14882:2011)
- 26.5.8.6.2 类模板 piecewise_constant_distribution [rand.dist.samp.pconst] (p: 955-957)