epinowcast
Loading...
Searching...
No Matches
expgrowth.stan File Reference

Go to the source code of this file.

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)
 

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 48 of file expgrowth.stan.

◆ 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 70 of file expgrowth.stan.

◆ 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 29 of file expgrowth.stan.

◆ 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 10 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 88 of file expgrowth.stan.