14 double result_inverse_gamma =
16 double result_inverse_gaussian =
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 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 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.