Main Page
Related Pages
Modules
Namespaces
Classes
Files
Examples
File List
File Members
stan
math
fwd
scal
fun
digamma.hpp
Go to the documentation of this file.
1
#ifndef STAN_MATH_FWD_SCAL_FUN_DIGAMMA_HPP
2
#define STAN_MATH_FWD_SCAL_FUN_DIGAMMA_HPP
3
4
#include <
stan/math/fwd/core.hpp
>
5
6
#include <
stan/math/prim/scal/fun/digamma.hpp
>
7
#include <
stan/math/prim/scal/fun/trigamma.hpp
>
8
9
namespace
stan
{
10
namespace
math
{
11
12
/**
13
* Return the derivative of the log gamma function at the
14
* specified argument.
15
*
16
* @tparam T scalar type of autodiff variable
17
* @param[in] x argument
18
* @return derivative of the log gamma function at the specified
19
* argument
20
*/
21
template
<
typename
T>
22
inline
fvar<T>
digamma
(
const
fvar<T>
&
x
) {
23
return
fvar<T>
(
digamma
(x.
val_
), x.
d_
*
trigamma
(x.
val_
));
24
}
25
}
// namespace math
26
}
// namespace stan
27
#endif
core.hpp
stan::math::fvar::d_
T d_
Definition:
fvar.hpp:51
stan
Definition:
StanTypedefs.h:9
digamma.hpp
submit_syst.x
x
Definition:
submit_syst.py:249
stan::math::fvar::val_
T val_
Definition:
fvar.hpp:46
stan::math::trigamma
fvar< T > trigamma(const fvar< T > &u)
Definition:
trigamma.hpp:21
math
trigamma.hpp
stan::math::fvar
Definition:
fvar.hpp:42
stan::math::digamma
fvar< T > digamma(const fvar< T > &x)
Definition:
digamma.hpp:22
Generated on Sat Mar 6 2021 14:15:15 for NOvA by
1.8.11