LogNormal Distribution / C ++ gnu

时间:2014-12-02 17:46:37

标签: c++ random gnu

我想在c ++ gnu中使用 log normal 分布生成随机点(x,y) 我知道它需要参数 mean variance ,但我怎么称呼它?

谢谢,

1 个答案:

答案 0 :(得分:2)

使用新的酷C++11 STL随机系统。

std::mt19937 mt(/*seed*/);
std::lognormal_distribution<float> dist(/*mean*/, /*variance*/);

float randomValue = dist(mt);