<random>

公共成员函数 (public member function)
<random>

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

(1)
explicit exponential_distribution ( result_type lambda = 1.0 );
(2)
explicit exponential_distribution ( const param_type& parm );
构造指数分布 (Construct exponential distribution)
构造一个 exponential_distribution 对象,采用由 lambda 或对象 parm 指定的分布参数。

参数

lambda
发生率(平均值)(λ)。
这表示随机事件平均每隔一个区间发生的次数。
其值应为正数(λ>0)。
result_type是一个成员类型,表示每次调用 operator() 时生成的随机数的类型。它被定义为第一个类模板参数的别名(实数类型 (RealType)).
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
22
23
24
// exponential_distribution example
#include <iostream>
#include <chrono>
#include <thread>
#include <random>

int main()
{
  // construct a trivial random generator engine from a time-based seed:
  int seed = std::chrono::system_clock::now().time_since_epoch().count();
  std::default_random_engine generator (seed);

  std::exponential_distribution<double> distribution (1.0);

  std::cout << "ten beeps, spread by 1 second, on average: " << std::endl;
  for (int i=0; i<10; ++i) {
    double number = distribution(generator);
    std::chrono::duration<double> period ( number );
    std::this_thread::sleep_for( period );
    std::cout << "beep!" << std::endl;
  }

  return 0;
}

输出
ten beeps, spread by 1 second, on average:
beep!
beep!
beep!
beep!
beep!
beep!
beep!
beep!
beep!
beep!


复杂度

常量。

另见