exponential_distribution: Exponential Distribution Functions
Description
Functions to compute the probability density function, cumulative distribution function, and quantile function for the Exponential distribution.
Usage
exponential_pdf(x, lambda)
exponential_lpdf(x, lambda)
exponential_cdf(x, lambda)
exponential_lcdf(x, lambda)
exponential_quantile(p, lambda)
Value
A single numeric value with the computed probability density, log-probability density, cumulative distribution, log-cumulative distribution, or quantile depending on the function called.