Stan  2.5.0
probability, sampling & optimization
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
lbeta.hpp
Go to the documentation of this file.
1 #ifndef STAN__AGRAD__FWD__FUNCTIONS__LBETA_HPP
2 #define STAN__AGRAD__FWD__FUNCTIONS__LBETA_HPP
3 
5 #include <stan/meta/traits.hpp>
6 #include <boost/math/special_functions/digamma.hpp>
8 
9 namespace stan {
10 
11  namespace agrad {
12 
13  template <typename T>
14  inline
15  fvar<T>
16  lbeta(const fvar<T>& x1, const fvar<T>& x2) {
17  using stan::math::lbeta;
19  return fvar<T>(lbeta(x1.val_, x2.val_),
20  x1.d_ * digamma(x1.val_)
21  + x2.d_ * digamma(x2.val_)
22  - (x1.d_ + x2.d_) * digamma(x1.val_ + x2.val_));
23  }
24 
25  template <typename T>
26  inline
27  fvar<T>
28  lbeta(const double x1, const fvar<T>& x2) {
29  using stan::math::lbeta;
31  return fvar<T>(lbeta(x1, x2.val_),
32  x2.d_ * digamma(x2.val_) - x2.d_ * digamma(x1 + x2.val_));
33  }
34 
35  template <typename T>
36  inline
37  fvar<T>
38  lbeta(const fvar<T>& x1, const double x2) {
39  using stan::math::lbeta;
41  return fvar<T>(lbeta(x1.val_, x2),
42  x1.d_ * digamma(x1.val_) - x1.d_ * digamma(x1.val_ + x2));
43  }
44  }
45 }
46 #endif
fvar< T > lbeta(const fvar< T > &x1, const fvar< T > &x2)
Definition: lbeta.hpp:16
boost::math::tools::promote_args< T1, T2 >::type lbeta(const T1 a, const T2 b)
Return the log of the beta function applied to the specified arguments.
Definition: lbeta.hpp:59
fvar< T > digamma(const fvar< T > &x)
Definition: digamma.hpp:16

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