我想知道在 C++ 标准库中是否有任何高斯分布数生成器,或者您是否有任何代码片段要传递。
提前致谢。
标准库没有。但是,Boost.Random 可以。如果我是你,我会使用它。
C++ 技术报告 1 增加了对随机数生成的支持。因此,如果您使用的是相对较新的编译器(visual c++ 2008 GCC 4.3),那么它很可能是开箱即用的。
有关(以及更多)的示例用法,请参见此处。std::tr1::normal_distribution
GNU 科学图书馆有这个特性。GSL - 高斯分布
这个问题的答案随着 C++11 的变化而变化,它具有包含std::normal_distribution的随机头。Walter Brown 的论文N3551, Random Number Generation in C++11可能是对该库的更好介绍之一。
以下代码演示了如何使用此标头(现场查看):
#include <iostream>
#include <iomanip>
#include <map>
#include <random>
int main()
{
std::random_device rd;
std::mt19937 e2(rd());
std::normal_distribution<> dist(2, 2);
std::map<int, int> hist;
for (int n = 0; n < 10000; ++n) {
++hist[std::floor(dist(e2))];
}
for (auto p : hist) {
std::cout << std::fixed << std::setprecision(1) << std::setw(2)
<< p.first << ' ' << std::string(p.second/200, '*') << '\n';
}
}
在我对C++ 随机浮点数生成的回答中,我提供了一组更通用的 C++11 中的随机数生成示例,其中包含 Boost 中的示例以及使用rand()
。