公有成员函数
<random>

std::negative_binomial_distribution::(ctor)

(1)
explicit negative_binomial_distribution ( result_type k = 1, double p = 0.5 );
(2)
explicit negative_binomial_distribution ( const param_type& parm );
构造负二项分布
构造一个negative_binomial_distribution对象,采用由kp或由对象parm指定的分布参数。

参数

k
负二项分布的参数k
这表示停止计数成功的伯努利分布实验的不成功试验次数,每个生成的值都模拟了这些实验。
result_type是一个成员类型,代表了每次调用operator()时生成的随机数的类型。它被定义为第一个类模板参数的别名(IntType).
p
成功概率。
这表示每次独立伯努利分布实验的成功概率,每个生成的值都模拟了这些实验。
这应该是一个介于0.01.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
// negative_binomial_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::negative_binomial_distribution<int> distribution (5,0.5);

  std::cout << "some negative binomial results (k=5,p=0.5): ";
  for (int i=0; i<10; ++i)
    std::cout << distribution(generator) << " ";

  std::cout << std::endl;

  return 0;
}

可能的输出
some negative binomial results (k=5,p=0.5): 1 1 6 4 4 5 2 9 2 4 


复杂度

常量。

另见