Automatic Differentiation
 
Loading...
Searching...
No Matches

◆ inv_gamma_cdf()

template<typename T_y , typename T_shape , typename T_scale >
return_type_t< T_y, T_shape, T_scale > stan::math::inv_gamma_cdf ( const T_y &  y,
const T_shape &  alpha,
const T_scale &  beta 
)

The CDF of an inverse gamma density for y with the specified shape and scale parameters.

y, shape, and scale parameters must be greater than 0.

Template Parameters
T_ytype of scalar
T_shapetype of shape
T_scaletype of scale
Parameters
yA scalar variable.
alphaShape parameter.
betaScale parameter.
Exceptions
std::domain_errorif alpha is not greater than 0.
std::domain_errorif beta is not greater than 0.
std::domain_errorif y is not greater than 0.

Definition at line 40 of file inv_gamma_cdf.hpp.