命名空间
变体
操作

std::piecewise_linear_distribution<RealType>::intervals, densities

来自 cppreference.com
 
 
 
 
 
std::vector<RealType> intervals() const;
(1) (自 C++11 起)
std::vector<RealType> densities() const;
(2) (自 C++11 起)

返回分布参数。

1) 返回区间的边界列表。
2) 返回区间边界处的概率密度列表。

[编辑] 参数

(无)

[编辑] 返回值

分布参数

1) 区间的边界列表。
2) 区间边界处的概率密度列表。

[编辑] 复杂度

此对象中区间数量的线性。