当前位置:   article > 正文

关于产生服从U(0,1)的随机数的过程_产 生 服 从 u(0,1)的 随 机 变 量

产 生 服 从 u(0,1)的 随 机 变 量

1 正确方法

//产生服从(0,1)之间均匀分布的随机数

    boost::mt19937 rng;                 // produces randomness out of thin air
                                      // see pseudo-random number generators
    boost::uniform_real<> one(0,1);      // distribution that maps to 0..1
                                      // see random number distributions
    boost::variate_generator<boost::mt19937&, boost::uniform_real<> > die(rng, one);  // glues randomness with mapping
    
    // 确定个体性别与基因型
    for (int i=0;i<N;i++)
    {

        u1 = die();                      // simulate rolling a die
        cout<< u1 <<endl;

        if (u1<s/(1+s))
            S[i]=1;
        else
            S[i]=2;
    }

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/花生_TL007/article/detail/83873
推荐阅读
相关标签
  

闽ICP备14008679号