Generate samples from Gamma(alpha,beta) density, according to the following equation:
![\[ x \sim \Gamma(\alpha,\beta) = \frac{\beta^\alpha}{\Gamma(\alpha)}x^{\alpha-1} \exp(-\beta x) \]](form_184.png) 
. More...
#include <random.h>
| Public Member Functions | |
| Gamma_RNG (double a=1.0, double b=1.0) | |
| Constructor, which sets alpha (a) and beta (b). | |
| void | setup (double a, double b) | 
| Set alpha and beta. | |
| double | operator() () | 
| Get one sample. | |
| vec | operator() (int n) | 
| Get a sample vector. | |
| mat | operator() (int r, int c) | 
| Get a sample matrix. | |
| double | sample () | 
| Get a sample. | |
Generate samples from Gamma(alpha,beta) density, according to the following equation:
![\[ x \sim \Gamma(\alpha,\beta) = \frac{\beta^\alpha}{\Gamma(\alpha)}x^{\alpha-1} \exp(-\beta x) \]](form_184.png) 
.
For  the Gamma distribution is equivalent to the Exponential distribution.
 the Gamma distribution is equivalent to the Exponential distribution.
 1.5.8
 1.5.8