Difference between revisions of "cpp/numeric/random/fisher f distribution"
From cppreference.com
(merge m and n) |
m (Use since= and until= params of {{ddcl}} template.) |
||
Line 1: | Line 1: | ||
{{cpp/title|fisher_f_distribution}} | {{cpp/title|fisher_f_distribution}} | ||
{{cpp/numeric/random/fisher_f_distribution/navbar}} | {{cpp/numeric/random/fisher_f_distribution/navbar}} | ||
− | {{ddcl | header=random | | + | {{ddcl | header=random | since=c++11 | 1= |
template< class RealType = double > | template< class RealType = double > | ||
class fisher_f_distribution; | class fisher_f_distribution; |
Revision as of 17:30, 9 July 2013
Defined in header <random>
|
||
template< class RealType = double > class fisher_f_distribution; |
(since C++11) | |
The fisher_f_distribution
class is a Template:concept that produces random numbers according to the f-distribution:
- p(x;m,n) =
(m/n)m/2 x(m/2)-1 (1+Γ((m+n)/2) Γ(m/2) Γ(n/2)
)-(m+n)/2mx n
m and n are the degrees of freedom.
Contents |
Member types
Member type | Definition |
result_type
|
RealType |
param_type
|
the type of the parameter set, unspecified |
Member functions
(C++11) |
constructs new distribution (public member function) |
(C++11) |
resets the internal state of the distribution (public member function) |
Generation | |
(C++11) |
generates the next random number in the distribution (public member function) |
Characteristics | |
(C++11) |
returns the distribution parameters (public member function) |
(C++11) |
gets or sets the distribution parameter object (public member function) |
(C++11) |
returns the minimum potentially generated value (public member function) |
(C++11) |
returns the maximum potentially generated value (public member function) |
Non-member functions
(C++11)(C++11)(removed in C++20) |
compares two distribution objects (function) |
(C++11) |
performs stream input and output on pseudo-random number distribution (function template) |
Example
This section is incomplete Reason: no example |
External links
Weisstein, Eric W. "F-Distribution." From MathWorld--A Wolfram Web Resource.