Stan Math Library  2.14.0
reverse mode automatic differentiation
gamma_p.hpp
Go to the documentation of this file.
1 #ifndef STAN_MATH_PRIM_SCAL_FUN_GAMMA_P_HPP
2 #define STAN_MATH_PRIM_SCAL_FUN_GAMMA_P_HPP
3 
4 #include <boost/math/special_functions/gamma.hpp>
5 
6 namespace stan {
7  namespace math {
8 
54  inline double gamma_p(double x, double a) {
55  return boost::math::gamma_p(x, a);
56  }
57 
58  }
59 }
60 #endif
var gamma_p(double a, const var &b)
Definition: gamma_p.hpp:113
fvar< T > gamma_p(const fvar< T > &x1, const fvar< T > &x2)
Definition: gamma_p.hpp:14

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