我正在尝试使用 boost::normal_distribution 来生成均值为 0 和 sigma 1 的正态分布。
以下代码不起作用,因为某些值超过或超过 -1 和 1(不应该)。有人能指出我做错了什么吗?
#include <boost/random.hpp>
#include <boost/random/normal_distribution.hpp>
int main()
{
boost::mt19937 rng; // I don't seed it on purpouse (it's not relevant)
boost::normal_distribution<> nd(0.0, 1.0);
boost::variate_generator<boost::mt19937&,
boost::normal_distribution<> > var_nor(rng, nd);
int i = 0; for (; i < 10; ++i)
{
double d = var_nor();
std::cout << d << std::endl;
}
}
我机器上的结果是:
0.213436
-0.49558
1.57538
-1.0592
1.83927
1.88577
0.604675
-0.365983
-0.578264
-0.634376
如您所见,所有值都不在 -1 和 1 之间。
谢谢大家!
编辑:当你有最后期限并避免在练习之前学习理论时,就会发生这种情况。