Stan
2.5.0
probability, sampling & optimization
Main Page
Related Pages
Namespaces
Classes
Files
File List
File Members
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Pages
src
stan
math
functions
gamma_q.hpp
Go to the documentation of this file.
1
#ifndef STAN__MATH__FUNCTIONS__GAMMA_Q_HPP
2
#define STAN__MATH__FUNCTIONS__GAMMA_Q_HPP
3
4
#include <boost/math/special_functions/gamma.hpp>
5
6
namespace
stan {
7
8
namespace
math {
9
52
// throws domain_error if x is at pole
53
double
gamma_q
(
double
x,
double
a) {
54
return
boost::math::gamma_q
(x,a);
55
}
56
57
}
58
}
59
60
#endif
stan::math::gamma_q
double gamma_q(double x, double a)
Definition:
gamma_q.hpp:53
[
Stan Home Page
]
© 2011–2014, Stan Development Team.