公有成员函数
<random>

std::poisson_distribution::(构造函数)

(1)
explicit poisson_distribution ( double mean = 1.0 );
(2)
explicit poisson_distribution ( const param_type& parm );
构造泊松分布
构造一个 poisson_distribution 对象,采用由 mean 或对象 parm 指定的分布参数。

参数

mean
区间内的预期事件数 (μ)。
这表示所计数事件的平均发生率。
其值必须为正数 (μ>0)。
parm
一个表示分布参数的对象,通过调用成员函数 param 获取。
param_type是一个成员类型。

示例

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// poisson_distribution example
#include <iostream>
#include <chrono>
#include <random>

int main()
{
  // 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::poisson_distribution<int> distribution (5.2);

  std::cout << "some Poisson-distributed results (mean=5.2): ";
  for (int i=0; i<10; ++i)
    std::cout << distribution(generator) << " ";

  std::cout << std::endl;

  return 0;
}

可能的输出
some Poisson-distributed results (mean=5.2): 5 5 9 7 3 1 5 7 7 2


复杂度

常量。

另见