命名空间
变体
操作

std::weibull_distribution<RealType>::a, b

来自 cppreference.cn
 
 
 
 
 
RealType a() const;
(1) (since C++11) (自 C++11 起)
RealType b() const;
(2) (since C++11) (自 C++11 起)

返回分布构建时使用的参数。

1) 返回 a 参数。它定义分布的形状。默认值是 1.0
2) 返回 b 参数。它定义分布的尺度。默认值是 1.0

目录

[edit] 参数

(无)

[edit] 返回值

1) a 参数的值。
2) b 参数的值。

[edit] 复杂度

常数。

[edit] 参见

(C++11)
获取或设置分布参数对象
(公共成员函数) [编辑]