std::gamma_distribution::alpha, beta

From cppreference.com
< cpplrm; | numericlrm; | randomlrm; | gamma distribution
Pseudo-random number generation
Uniform random bit generators
Engines and engine adaptors
Non-deterministic generator
Distributions
Uniform distributions
Bernoulli distributions
Poisson distributions
Normal distributions
Sampling distributions
Seed Sequences
(C++11)
C library
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

gets or sets the distribution parameter object
(public member function)