std::gamma_distribution<RealType>:: alpha, beta
From cppreference.com
<
cpp
|
numeric
|
random
|
gamma distribution
C++
Numerics library
Common mathematical functions | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Mathematical special functions (C++17) | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Mathematical constants (C++20) | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Basic linear algebra algorithms (C++26) | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Data-parallel types (
simd
)
(C++26)
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Floating-point environment (C++11) | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Complex numbers | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Numeric array (
valarray
)
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Pseudo-random number generation | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Factor operations | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Interpolations | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Saturation arithmetic | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Generic numeric operations | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bit operations | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
Pseudo-random number generation
|
|
std::gamma_distribution
Member functions | ||||
Generation | ||||
Characteristics | ||||
gamma_distribution::alpha
gamma_distribution::beta
|
||||
Non-member functions | ||||
(C++11)
(C++11)
(until C++20)
|
||||
(C++11)
(C++11)
|
RealType alpha
(
)
const
;
|
(1) | (since C++11) |
RealType beta
(
)
const
;
|
(2) | (since C++11) |
Returns the distribution parameters the distribution has been constructed with.
1)
Returns the
α
distribution parameter. It is also known as the shape parameter. The default value is
1.0
.
2)
Returns the
β
distribution parameter. It is also known as the scale parameter. The default value is
1.0
.
Parameters
(none)
Return value
1)
Floating point value identifying the
α
parameter.
2)
Floating point value identifying the
β
parameter.
See also
(C++11)
|
gets or sets the distribution parameter object
(public member function) |
Retrieved from "
https://en.cppreference.com/mwiki/index.php?title=cpp/numeric/random/gamma_distribution/params&oldid=151282
"