Stan Math Library
4.9.0
Automatic Differentiation
|
double stan::math::discrete_range_lccdf | ( | const T_y & | y, |
const T_lower & | lower, | ||
const T_upper & | upper | ||
) |
Return the log CCDF of a discrete range distribution for the given y, lower and upper bounds (all integers).
y
, lower
and upper
can each be a scalar or a one-dimensional container. Any container arguments must be the same size.
T_y | type of scalar, either int or std::vector<int> |
T_lower | type of lower bound, either int or std::vector<int> |
T_upper | type of upper bound, either int or std::vector<int> |
y | integer random variable |
lower | integer lower bound |
upper | integer upper bound |
std::domain_error | if upper is smaller than lower. |
std::invalid_argument | if non-scalar arguments are of different sizes. |
Definition at line 38 of file discrete_range_lccdf.hpp.