primarycensored
Loading...
Searching...
No Matches
Exponential Growth Distribution Functions

Functions for exponential growth distribution calculations. More...

Collaboration diagram for Exponential Growth Distribution Functions:

Functions

real expgrowth_pdf (real x, real min, real max, real r)
 
real expgrowth_lpdf (real x, real min, real max, real r)
 
real expgrowth_cdf (real x, real min, real max, real r)
 
real expgrowth_lcdf (real x, real min, real max, real r)
 
real expgrowth_rng (real min, real max, real r)
 

Description

Functions for exponential growth distribution calculations.

Function Documentation

◆ expgrowth_cdf()

real expgrowth_cdf ( real x,
real min,
real max,
real r )

Exponential growth cumulative distribution function (CDF)

Parameters
xValue at which to evaluate the CDF
minLower bound of the distribution
maxUpper bound of the distribution
rRate parameter for exponential growth
Returns
The CDF evaluated at x

Definition at line 51 of file expgrowth.stan.

Here is the caller graph for this function:

◆ expgrowth_lcdf()

real expgrowth_lcdf ( real x,
real min,
real max,
real r )

Exponential growth log cumulative distribution function (log CDF)

Parameters
xValue at which to evaluate the log CDF
minLower bound of the distribution
maxUpper bound of the distribution
rRate parameter for exponential growth
Returns
The log CDF evaluated at x

Definition at line 74 of file expgrowth.stan.

Here is the call graph for this function:

◆ expgrowth_lpdf()

real expgrowth_lpdf ( real x,
real min,
real max,
real r )

Exponential growth log probability density function (log PDF)

Parameters
xValue at which to evaluate the log PDF
minLower bound of the distribution
maxUpper bound of the distribution
rRate parameter for exponential growth
Returns
The log PDF evaluated at x

Definition at line 31 of file expgrowth.stan.

Here is the caller graph for this function:

◆ expgrowth_pdf()

real expgrowth_pdf ( real x,
real min,
real max,
real r )

Exponential growth probability density function (PDF)

Parameters
xValue at which to evaluate the PDF
minLower bound of the distribution
maxUpper bound of the distribution
rRate parameter for exponential growth
Returns
The PDF evaluated at x

Definition at line 11 of file expgrowth.stan.

◆ expgrowth_rng()

real expgrowth_rng ( real min,
real max,
real r )

Exponential growth random number generator

Parameters
minLower bound of the distribution
maxUpper bound of the distribution
rRate parameter for exponential growth
Returns
A random draw from the exponential growth distribution

Definition at line 93 of file expgrowth.stan.