类模板
<random>
std::chi_squared_distribution
template <class RealType = double> class chi_squared_distribution;
卡方分布 (Chi-squared distribution)
根据卡方分布生成浮点值的随机数分布,其概率密度函数描述如下:
此分布生成随机数的机制是聚合n个独立的标准正态随机变量(正态分布,μ=0.0且σ=1.0)的平方,其中n是该分布的参数,称为自由度。
要生成遵循此分布的随机值,请调用其成员函数 operator()。
模板参数
- 实数类型 (RealType)
- 浮点类型。别名为成员类型result_type.
默认情况下,它是double.
成员类型
以下别名是正态分布 (normal_distribution):
成员类型 | 定义 | 说明 |
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
|
// chi_squared_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::chi_squared_distribution<double> distribution(3.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 << "chi_squared_distribution (3.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;
}
|
可能的输出
chi_squared_distribution (3.0):
0-1: *******************
1-2: ***********************
2-3: ******************
3-4: ************
4-5: *********
5-6: *****
6-7: ***
7-8: **
8-9: *
9-10: *
|