矩阵的数字生成器在特定范围内

时间:2014-05-14 08:39:55

标签: c++ matrix numbers generator

我需要一些数字生成器用于c ++中的矩阵,但具有特定的范围。 例如,我需要范围<-1,1>的随机矩阵。或&lt; 0,1&gt;。 所以我需要一些函数,哪些参数是特定的间隔。

由于

2 个答案:

答案 0 :(得分:0)

如果您的编译器支持C ++ 11,您可以迭代矩阵的元素,并使用[a,b]范围内的数字随机初始化它们,如下所示:

#include <iostream>
#include <chrono>
#include <random>

void fillMatrixRnd(YourMatrix &M, double const a, double const b)
{
  // construct a trivial random generator engine from a time-based seed:
  unsigned seed = std::chrono::system_clock::now().time_since_epoch().count();
  std::default_random_engine generator (seed);
  std::uniform_real_distribution<double> distribution (a, b);
  for(auto e : M) e = distribution(generator); // Change here according to your needs
}

答案 1 :(得分:0)