公有成員函式
<random>

std::chi_squared_distribution::(建構函式)

(1)
explicit chi_squared_distribution ( result_type n = 1.0 );
(2)
explicit chi_squared_distribution ( const param_type& parm );
構造卡方分佈
構造一個chi_squared_distribution物件,採用由n或物件parm指定的分佈引數。

引數

n
自由度,指定分佈模擬的獨立變數的數量。
這必須是正值(n>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
// chi_squared_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::chi_squared_distribution<double> distribution (4.0);

  std::cout << "some chi-square-distributed(4.0) results:" << std::endl;
  for (int i=0; i<5; ++i)
    std::cout << distribution(generator) << std::endl;

  return 0;
}

可能的輸出
some chi-squared-distributed(4.0) results:
5.69521
7.84941
3.86524
5.4442
5.38723


複雜度

常量。

另見