Returns the beta log complementary cumulative distribution function for the given probability, success, and failure parameters.
Any arguments other than scalars must be containers of the same size. With non-scalar arguments, the return is the sum of the log ccdfs with scalars broadcast as necessary.
- Template Parameters
-
| T_y | type of y |
| T_scale_succ | type of success parameter |
| T_scale_fail | type of failure parameter |
- Parameters
-
| y | (Sequence of) scalar(s) between zero and one |
| alpha | (Sequence of) success parameter(s) |
| beta_param | (Sequence of) failure parameter(s) |
- Returns
- log probability or sum of log of probabilities
- Exceptions
-
| std::domain_error | if alpha or beta is negative |
| std::domain_error | if y is not a valid probability |
| std::invalid_argument | if container sizes mismatch |
Definition at line 41 of file beta_lccdf.hpp.