<random>

公有成員函式
<random>

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

(1)
explicit student_t_distribution ( result_type n = 1.0 );
(2)
explicit student_t_distribution ( const param_type& parm );
構造學生 t 分佈
構造一個 student_t_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
// student_t_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::student_t_distribution<double> distribution (10.0);

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

  return 0;
}

可能的輸出
some T-distributed(10.0) results:
2.47885
2.38749
-0.554628
0.0953787
0.0732851


複雜度

常量。

另見