Stan Math Library  2.20.0
reverse mode automatic differentiation
ordered_logistic_log.hpp
Go to the documentation of this file.
1 #ifndef STAN_MATH_PRIM_MAT_PROB_ORDERED_LOGISTIC_LOG_HPP
2 #define STAN_MATH_PRIM_MAT_PROB_ORDERED_LOGISTIC_LOG_HPP
3 
6 
7 namespace stan {
8 namespace math {
9 
40 template <bool propto, typename T_y, typename T_loc, typename T_cut>
42  const T_y& y, const T_loc& lambda, const T_cut& c) {
43  return ordered_logistic_lpmf<propto>(y, lambda, c);
44 }
45 
49 template <typename T_y, typename T_loc, typename T_cut>
51  const T_y& y, const T_loc& lambda, const T_cut& c) {
52  return ordered_logistic_lpmf(y, lambda, c);
53 }
54 } // namespace math
55 } // namespace stan
56 #endif
return_type< T_loc, T_cut >::type ordered_logistic_lpmf(const T_y &y, const T_loc &lambda, const T_cut &c)
Returns the (natural) log probability of the specified array of integers given the vector of continuo...
boost::math::tools::promote_args< double, typename scalar_type< T >::type, typename return_type< Types_pack... >::type >::type type
Definition: return_type.hpp:36
return_type< T_loc, T_cut >::type ordered_logistic_log(const T_y &y, const T_loc &lambda, const T_cut &c)
Returns the (natural) log probability of the integer/s given the vector of continuous location/s and ...

     [ Stan Home Page ] © 2011–2018, Stan Development Team.