class template
<random>
std::chi_squared_distributiontemplate <class RealType = double> class chi_squared_distribution;
Chi-squared distribution
Random number distribution that produces floating-point values according to a chi-squared distribution, which is described by the following probability density function:This distribution produces random numbers as if the square of n independent standard normal random variables (Normal with μ=0.0 and σ=1.0) were aggregated, where n is the distribution parameter, known as degrees of freedom.
To produce a random value following this distribution, call its member function operator().
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: *
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4