如何在c ++中创建一个正态分布式随机数生成器数组?

时间:2018-04-01 10:42:11

标签: c++ arrays random normal-distribution

我需要一系列正态分布的随机数,具有不同的均值和方差,我知道如何创建一个具有特定均值和方差的系列,但是我可以使用一组生成器吗?

喜欢我们的1系列

#include <random>
#include <iostream>
using namespace std;
int main()
{
    random_device rd;
    mt19937 gen(rd());
    normal_distribution<double> d(0.0, 1.0);
    for (int i = 0; i < 5000; i++)
        cout << " " << d(gen) << "\n";
    return 0;
}

这给了我一系列正态分布的随机数,我知道我可以为另一个系列创建另一个具有另一个均值和方差的d,但是有没有办法在数组中有很多这样的normal_distribution d,这样我可以通过简单地选择数组中的元素来选择特定的生成器。

我试过一个

的版本
#include <random>
#include <iostream>
using namespace std;
int main()
{
    random_device rd;
    mt19937 gen(rd());
    normal_distribution<double> d(0.0, 1.0),d2(0.0,1.0);
    normal_distribution<double> D[]={d,d2};
    for (int i = 0; i < 5000; i++)
        cout << " " << D[0](gen) << "\n";
    system("pause");
    return 0;
}

但是我想直接用像D0那样的数组初始化它,这样我就可以把它放在一个循环中

2 个答案:

答案 0 :(得分:0)

当然可以

#include <iostream>
#include <vector>
#include <random>

int main() {
    std::vector<std::normal_distribution<double>> D{ 
              std::normal_distribution<double>{0.0, 1.0 },                                                     
              std::normal_distribution<double>{0.0, 2.0 } };

    std::random_device rd;
    std::mt19937 gen(rd());

    std::cout << D[0](gen) << "\n";
    std::cout << D[1](gen) << "\n";

    return 0;
}

答案 1 :(得分:0)

如您所知,C ++为随机数提供函数,我们也可以创建和初始化数组,如下所示。如果不在下面发表评论,我希望它会有所帮助。

const int nrolls=10000;  // number of experiments
const int nstars=100;    // maximum number of stars to distribute

std::default_random_engine generator;
std::normal_distribution<double> distribution(5.0,2.0);

int p[10]={};

for (int i=0; i<nrolls; ++i) {
double number = distribution(generator);
if ((number>=0.0)&&(number<10.0)) ++p[int(number)];
}

std::cout << "normal_distribution (5.0,2.0):" << std::endl;

for (int i=0; i<10; ++i) {
std::cout << i << "-" << (i+1) << ": ";
std::cout << std::string(p[i]*nstars/nrolls,'*') << std::endl;
}