類模板
<random>

std::cauchy_distribution

template <class RealType = double> class cauchy_distribution;
柯西分佈
一種隨機數分佈,根據柯西分佈生成浮點數值,其機率密度函式描述如下:



此分佈透過除以兩個獨立的標準正態隨機變數(具有μ=0.0σ=1.0正態分佈)來產生隨機數,類似於自由度為一的學生t分佈

分佈引數 ab構造時設定。

要生成遵循此分佈的隨機值,請呼叫其成員函式 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
// cauchy_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::cauchy_distribution<double> distribution(5.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 << "cauchy_distribution (5.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;
}

可能的輸出

cauchy_distribution (5.0,1.0):
0-1: *
1-2: **
2-3: ****
3-4: **********
4-5: ************************
5-6: *************************
6-7: *********
7-8: ****
8-9: **
9-10: *


另見