C++ 参考手册
- C++11
- C++14
- C++17
- C++20
- C++ 编译器支持情况表
- 独立与宿主实现
- C++ 语言
- C++ 关键词
- 预处理器
- C++ 标准库头文件
- 具名要求
- 功能特性测试 (C++20)
- 工具库
- 类型支持(基本类型、RTTI、类型特性)
- 概念库 (C++20)
- 错误处理
- 动态内存管理
- 日期和时间工具
- 字符串库
- 容器库
- 迭代器库
- 范围库 (C++20)
- 算法库
- 数值库
- 常用数学函数
- 数学特殊函数
- 伪随机数生成
- std::uniform_random_bit_generator
- std::linear_congruential_engine
- std::mersenne_twister_engine
- std::srand
- std::rand
- std::subtract_with_carry_engine
- std::discard_block_engine
- std::independent_bits_engine
- std::shuffle_order_engine
- std::random_device
- std::uniform_int_distribution
- std::uniform_real_distribution
- std::generate_canonical
- std::bernoulli_distribution
- std::binomial_distribution
- std::negative_binomial_distribution
- std::geometric_distribution
- std::poisson_distribution
- std::exponential_distribution
- std::gamma_distribution
- std::weibull_distribution
- std::extreme_value_distribution
- std::normal_distribution
- std::lognormal_distribution
- std::chi_squared_distribution
- std::cauchy_distribution
- std::fisher_f_distribution
- std::student_t_distribution
- std::discrete_distribution
- std::piecewise_constant_distribution
- std::piecewise_linear_distribution
- std::seed_seq
- RAND_MAX
- std::midpoint
- std::lerp
- std::has_single_bit
- std::bit_ceil
- std::bit_floor
- std::bit_width
- std::rotl
- 浮点环境
- std::complex
- std::valarray
- 编译时有理数算术
- std::gcd
- std::lcm
- 数学常数
- std::bit_cast
- std::rotr
- std::countl_zero
- std::countl_one
- std::countr_zero
- std::countr_one
- std::popcount
- 注释
- 输入/输出库
- 文件系统库
- 本地化库
- 正则表达式库
- 原子操作库
- 线程支持库
- 实验性 C++ 特性
- 有用的资源
- 索引
- std 符号索引
- 协程支持 (C++20)
- C++ 关键词
std::normal_distribution
定义于头文件 <random>
|
||
template< class RealType = double > class normal_distribution; |
(C++11 起) | |
生成服从正态(高斯)随机数分布的随机数。它定义为:
- f(x; μ,σ) =
exp⎛1 σ√2π
⎜
⎝
⎛-1 2
⎜
⎝
⎞x-μ σ
⎟
⎠2
⎞
⎟
⎠
此处 μ 为平均数 (mean) 而 σ 为标准差 (stddev) 。
std::normal_distribution
满足随机数分布 (RandomNumberDistribution) 的所有要求。
模板形参
RealType | - | 生成器所生成的结果类型。若它不是 float 、 double 或 long double 之一则效果未定义。
|
成员类型
成员类型 | 定义 |
result_type
|
RealType |
param_type
|
参数集的类型,见随机数分布 (RandomNumberDistribution) 。 |
成员函数
构造新分布 (公开成员函数) | |
重置分布的内部状态 (公开成员函数) | |
生成 | |
生成分布中的下个随机数 (公开成员函数) | |
特征 | |
返回分布参数 (公开成员函数) | |
获取或设置随机参数对象 (公开成员函数) | |
返回最小的潜在生成值 (公开成员函数) | |
返回最大的潜在生成值 (公开成员函数) |
非成员函数
比较两个分布对象 (函数) | |
执行伪随机数分布的流输入和输出 (函数模板) |
示例
运行此代码
#include <iostream> #include <iomanip> #include <string> #include <map> #include <random> #include <cmath> int main() { std::random_device rd{}; std::mt19937 gen{rd()}; // 值最可能接近平均 // 标准差影响生成的值距离平均数的分散 std::normal_distribution<> d{5,2}; std::map<int, int> hist{}; for(int n=0; n<10000; ++n) { ++hist[std::round(d(gen))]; } for(auto p : hist) { std::cout << std::setw(2) << p.first << ' ' << std::string(p.second/200, '*') << '\n'; } }
可能的输出:
-2 -1 0 1 * 2 *** 3 ****** 4 ******** 5 ********** 6 ******** 7 ***** 8 *** 9 * 10 11 12
外部链接
- Weisstein, Eric W. “正态分布”来自 MathWorld--A Wolfram Web Resource 。
- 正态分布来自维基百科。