52 static double bernoulli(
double x,
double p);
62 static double beta(
double x,
double alpha,
double beta);
72 static double binomial(
int k,
int n,
double p);
82 static double cauchy(
double x,
double x0,
double gamma);
100 static double exponential(
double x,
double lambda);
112 static double f(
double x,
double df1,
double df2);
122 static double gamma(
double x,
double shape,
double scale);
132 static double inverse_gamma(
double x,
double shape,
double scale);
152 static double laplace(
double x,
double mu,
double b);
162 static double logistic(
double x,
double mu,
double s);
173 static double log_normal(
double x,
double mu,
double sigma);
183 static double gaussian(
double x,
double mu,
double sigma);
192 static double poisson(
int k,
double lambda);
209 static double student_t(
double x,
double df);
219 static double uniform(
double x,
double a,
double b);
229 static double weibull(
double x,
double shape,
double scale);
Class providing methods for computing cumulative distribution functions (CDFs)
static double gaussian(double x, double mu, double sigma)
Compute the cumulative distribution function (CDF) of the normal (Gaussian) distribution.
static double bernoulli(double x, double p)
Compute the cumulative distribution function (CDF) of the Bernoulli distribution.
static double normal_cdf(double x)
Compute the cumulative distribution function (CDF) of the standard normal distribution.
static double inverse_gamma(double x, double shape, double scale)
Compute the cumulative distribution function (CDF) of the inverse-gamma distribution.
static double laplace(double x, double mu, double b)
Compute the cumulative distribution function (CDF) of the Laplace distribution.
static double inverse_gaussian(double x, double mu, double lambda)
Compute the cumulative distribution function (CDF) of the inverse-Gaussian distribution.
static double beta(double x, double alpha, double beta)
Compute the cumulative distribution function (CDF) of the beta distribution.
static double exponential(double x, double lambda)
Compute the cumulative distribution function (CDF) of the exponential distribution.
static double gamma(double x, double shape, double scale)
Compute the cumulative distribution function (CDF) of the gamma distribution.
static double poisson(int k, double lambda)
Compute the cumulative distribution function (CDF) of the Poisson distribution.
static double f(double x, double df1, double df2)
Compute the cumulative distribution function (CDF) of the F distribution.
static double chi_squared(double x, double k)
Compute the cumulative distribution function (CDF) of the chi-squared distribution.
static double rademacher(double x)
Compute the cumulative distribution function (CDF) of the Rademacher distribution.
static double weibull(double x, double shape, double scale)
Compute the cumulative distribution function (CDF) of the Weibull distribution.
static double binomial(int k, int n, double p)
Compute the cumulative distribution function (CDF) of the binomial distribution.
static double student_t(double x, double df)
Compute the cumulative distribution function (CDF) of Student's t distribution.
static double incomplete_gamma(double a, double x)
Compute the incomplete gamma function.
static double incomplete_beta(double a, double b, double x)
Compute the incomplete beta function.
static double logistic(double x, double mu, double s)
Compute the cumulative distribution function (CDF) of the logistic distribution.
static double log_normal(double x, double mu, double sigma)
Compute the cumulative distribution function (CDF) of the log-normal distribution.
static double cauchy(double x, double x0, double gamma)
Compute the cumulative distribution function (CDF) of the Cauchy distribution.
static double uniform(double x, double a, double b)
Compute the cumulative distribution function (CDF) of the uniform distribution.
The source C++ openGPMP namespace.