類模板
<random>

std::lognormal_distribution

template <class RealType = double> class lognormal_distribution;
對數正態分佈
一種隨機數分佈,它根據對數正態分佈生成浮點數值,該分佈由以下機率密度函式描述:



此分佈生成的隨機數的對數是正態分佈的(參見normal_distribution)。

分佈引數(ms)與底層正態分佈的特性相關。

要生成遵循此分佈的隨機值,請呼叫其成員函式 operator()

模板引數

實數型別 (RealType)
浮點型別。別名為成員型別result_type.
預設情況下,它是double.

成員型別

以下別名是對數正態分佈:

成員型別定義說明
result_type第一個模板引數 (實數型別 (RealType))生成的數字型別(預設為double)
param_type未指定 (not specified)成員 param 返回的型別。

成員函式


分佈引數


非成員函式


示例

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
// lognormal_distribution
#include <iostream>
#include <random>

int main()
{
  const int nrolls=10000;  // number of experiments
  const int nstars=100;    // maximum number of stars to distribute

  std::default_random_engine generator;
  std::lognormal_distribution<double> distribution(0.0,1.0);

  int p[10]={};

  for (int i=0; i<nrolls; ++i) {
    double number = distribution(generator);
    if ((number>=0.0)&&(number<10.0)) ++p[int(number)];
  }

  std::cout << "lognormal_distribution (0.0,1.0):" << std::endl;

  for (int i=0; i<10; ++i) {
    std::cout << i << "-" << (i+1) << ": ";
    std::cout << std::string(p[i]*nstars/nrolls,'*') << std::endl;
  }

  return 0;
}

可能的輸出
lognormal_distribution (0.0,1.0):
0-1: **************************************************
1-2: **************************
2-3: **********
3-4: *****
4-5: **
5-6: *
6-7: 
7-8: 
8-9: 
9-10: 


另見