标签: c++ random gnu
我想在c ++ gnu中使用 log normal 分布生成随机点(x,y) 我知道它需要参数 mean 和 variance ,但我怎么称呼它?
谢谢,
答案 0 :(得分:2)
使用新的酷C++11 STL随机系统。
C++11
std::mt19937 mt(/*seed*/); std::lognormal_distribution<float> dist(/*mean*/, /*variance*/); float randomValue = dist(mt);