Difference between revisions of "cpp/numeric/random/gamma distribution/params"
From cppreference.com
< cpp | numeric | random | gamma distribution
m (link to ja) |
m (langlinks) |
||
Line 29: | Line 29: | ||
{{dsc end}} | {{dsc end}} | ||
− | {{langlinks|ja|zh}} | + | {{langlinks|ja|zh}} |
Revision as of 16:17, 28 November 2021
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) |