std::weibull_distribution
来自 cppreference.com
定义在头文件 <random> 中 |
||
template< class RealType = double > class weibull_distribution; |
(自 C++11 起) | |
weibull_distribution
满足 RandomNumberDistribution 的要求,并根据 威布尔分布 生成随机数
- f(x;a,b) =
⎛a b
⎜
⎝
⎞x b
⎟
⎠a-1
exp⎛
⎜
⎝-⎛
⎜
⎝
⎞x b
⎟
⎠a
⎞
⎟
⎠
std::weibull_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()); std::weibull_distribution<> d; std::map<int, int> hist; for (int n = 0; n != 10000; ++n) ++hist[std::round(d(gen))]; std::cout << std::fixed << std::setprecision(1) << std::hex; for (auto [x, y] : hist) std::cout << x << ' ' << std::string(y / 200, '*') << '\n'; }
可能的输出
0 ******************* 1 ******************* 2 ****** 3 ** 4 5 6 7 8
[编辑] 外部链接
1. | Weisstein, Eric W. "韦布尔分布." 来自 Wolfram Web 资源 — MathWorld。 |
2. | 韦布尔分布 — 来自 维基百科。 |