std::normal_distribution
来自 cppreference.com
定义在头文件 <random> 中 |
||
template< class RealType = double > class normal_distribution; |
(自 C++11 起) | |
根据 正态(或高斯)随机数分布 生成随机数。它定义为
- f(x; μ,σ) =
exp⎛1 σ√2π
⎜
⎝
⎛-1 2
⎜
⎝
⎞x-μ σ
⎟
⎠2
⎞
⎟
⎠
这里 μ 是 平均值,而 σ 是 标准差 (stddev)。
std::normal_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++11)(在 C++20 中移除) |
比较两个分布对象 (函数) |
(C++11) |
对伪随机数分布执行流输入和输出 (函数模板) |
[编辑] 示例
运行此代码
#include <cmath> #include <iomanip> #include <iostream> #include <map> #include <random> #include <string> int main() { std::random_device rd{}; std::mt19937 gen{rd()}; // values near the mean are the most likely // standard deviation affects the dispersion of generated values from the mean std::normal_distribution d{5.0, 2.0}; // draw a sample from the normal distribution and round it to an integer auto random_int = [&d, &gen]{ return std::round(d(gen)); }; std::map<int, int> hist{}; for (int n = 0; n != 10000; ++n) ++hist[random_int()]; for (auto [x, y] : hist) std::cout << std::setw(2) << x << ' ' << std::string(y / 200, '*') << '\n'; }
可能的输出
-2 -1 0 1 * 2 *** 3 ****** 4 ******** 5 ********** 6 ******** 7 ***** 8 *** 9 * 10 11 12
[编辑] 外部链接
1. | Weisstein, Eric W. "正态分布." 来自 Wolfram Web 资源 — MathWorld。 |
2. | 正态分布 — 来自维基百科。 |