1 #ifndef STAN_MATH_PRIM_SCAL_PROB_NEG_BINOMIAL_2_CDF_LOG_HPP 2 #define STAN_MATH_PRIM_SCAL_PROB_NEG_BINOMIAL_2_CDF_LOG_HPP 16 template <
typename T_n,
typename T_location,
21 const T_precision& phi) {
29 static const char*
function(
"neg_binomial_2_cdf_log");
35 "Location parameter", mu,
36 "Precision Parameter", phi);
42 size_t size_phi_mu =
max_size(mu, phi);
44 T_location, T_precision> phi_mu(size_phi_mu);
45 for (
size_t i = 0; i < size_phi_mu; i++)
46 phi_mu[i] = phi_vec[i] / (phi_vec[i] + mu_vec[i]);
51 for (
size_t i = 0; i < size_n; i++)
55 np1[i] = n_vec[i] + 1.0;
fvar< T > log(const fvar< T > &x)
size_t length(const std::vector< T > &x)
boost::math::tools::promote_args< typename scalar_type< T1 >::type, typename scalar_type< T2 >::type, typename scalar_type< T3 >::type, typename scalar_type< T4 >::type, typename scalar_type< T5 >::type, typename scalar_type< T6 >::type >::type type
void check_positive_finite(const char *function, const char *name, const T_y &y)
Check if y is positive and finite.
void check_not_nan(const char *function, const char *name, const T_y &y)
Check if y is not NaN.
size_t max_size(const T1 &x1, const T2 &x2)
return_type< T_y, T_scale_succ, T_scale_fail >::type beta_cdf_log(const T_y &y, const T_scale_succ &alpha, const T_scale_fail &beta)
VectorBuilder allocates type T1 values to be used as intermediate values.
VectorBuilderHelper< T1, used, contains_vector< T2, T3, T4, T5, T6, T7 >::value >::type data()
return_type< T_location, T_precision >::type neg_binomial_2_cdf_log(const T_n &n, const T_location &mu, const T_precision &phi)
VectorView is a template expression that is constructed with a container or scalar, which it then allows to be used as an array using operator[].
void check_consistent_sizes(const char *function, const char *name1, const T1 &x1, const char *name2, const T2 &x2)
Check if the dimension of x1 is consistent with x2.