std::weibull_distribution<RealType>::a, b
来自cppreference.com
< cpp | numeric | random | weibull distribution
RealType a() const; |
(1) | (C++11 起) |
RealType b() const; |
(2) | (C++11 起) |
返回构造分布所用的参数。
1) 返回 a 参数。它定义分布的形状。默认值为 1.0 。
2) 返回 b 参数。它定义分布的尺度。默认值为 1.0 。
参数
(无)
返回值
1) a 参数的值。
2) b 参数的值。
复杂度
常数。
参阅
获取或设置随机参数对象 (公开成员函数) |