|
| static double | bernoulli (double x, double p) |
| | Calculates the probability of success in a Bernoulli trial. More...
|
| |
| static double | beta (double x, double alpha, double beta) |
| | Calculates the probability density function (PDF) of the Beta distribution. More...
|
| |
| static double | binomial (int k, int n, double p) |
| | Calculates the probability of observing k successes in n independent Bernoulli trials. More...
|
| |
| static double | cauchy (double x, double x0, double gamma) |
| | Calculates the probability density function (PDF) of the Cauchy distribution. More...
|
| |
| static double | chi_squared (double x, int k) |
| | Calculates the probability density function (PDF) of the chi-squared distribution. More...
|
| |
| static double | exponential (double x, double lambda) |
| | Calculates the probability density function (PDF) of the exponential distribution. More...
|
| |
| static double | f_dist (double x, int df1, int df2) |
| | Calculates the probability density function (PDF) of the F distribution. More...
|
| |
| static double | gamma (double x, double alpha, double beta) |
| | Calculates the probability density function (PDF) of the gamma distribution. More...
|
| |
| static double | inverse_gamma (double x, double alpha, double beta) |
| | Calculates the probability density function (PDF) of the inverse gamma distribution. More...
|
| |
| static double | inverse_gaussian (double x, double mu, double lambda) |
| | Calculates the probability density function (PDF) of the inverse Gaussian distribution. More...
|
| |
| static double | laplace (double x, double mu, double b) |
| | Calculates the probability density function (PDF) of the Laplace distribution. More...
|
| |
| static double | logistic (double x, double mu, double s) |
| | Calculates the probability density function (PDF) of the logistic distribution. More...
|
| |
| static double | log_normal (double x, double mu, double sigma) |
| | Calculates the probability density function (PDF) of the log-normal distribution. More...
|
| |
| static double | gaussian (double x, double mu, double sigma) |
| | Calculates the probability density function (PDF) of the Gaussian (normal) distribution. More...
|
| |
| static double | poisson (int k, double lambda) |
| | Calculates the probability density function (PDF) of the Poisson distribution. More...
|
| |
| static double | rademacher (int k) |
| | Calculates the probability density function (PDF) of the Rademacher distribution. More...
|
| |
| static double | student_t (double x, int df) |
| | Calculates the probability density function (PDF) of Student's t distribution. More...
|
| |
| static double | uniform (double x, double a, double b) |
| | Calculates the probability density function (PDF) of the uniform distribution. More...
|
| |
| static double | weibull (double x, double k, double lambda) |
| | Calculates the probability density function (PDF) of the Weibull distribution. More...
|
| |
| static double | binomial_coefficient (int n, int k) |
| | Calculates the binomial coefficient "n choose k". More...
|
| |
| static double | beta_function (double alpha, double beta) |
| | Calculates the beta function. More...
|
| |
| static double | factorial (int n) |
| | Calculates the factorial of an integer. More...
|
| |
Class representing Probability Distribution Functions (PDFs)
Definition at line 41 of file pdfs.hpp.