公有成员函数 (public member function)
<random>
(1) | explicit fisher_f_distribution ( result_type m = 1.0, result_type n = 1.0 ); |
---|
(2) | explicit fisher_f_distribution ( const param_type& parm ); |
---|
构造费舍尔F分布 (Construct Fisher F-distribution)
参数
- m
- 分布参数 m,它指定了分子自由度。
该值必须是正数 (m>0)。
result_type是一个成员类型,表示每次调用 operator() 时生成的随机数类型。它被定义为第一个类模板参数的别名 (实数类型 (RealType)).
- n
- 分布参数 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
|
// fisher_f_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::fisher_f_distribution<double> distribution (2.0,2.0);
std::cout << "some F-distributed(2.0,2.0) results:" << std::endl;
for (int i=0; i<5; ++i)
std::cout << distribution(generator) << std::endl;
return 0;
}
|
可能的输出
some F-distributed(2.0,2.0) results:
0.226118
0.208781
0.0283665
2.15256
0.37961
|