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