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
agrad
fwd
functions
log_falling_factorial.hpp
Go to the documentation of this file.
1
#ifndef STAN__AGRAD__FWD__FUNCTIONS__LOG_FALLING_FACTORIAL_HPP
2
#define STAN__AGRAD__FWD__FUNCTIONS__LOG_FALLING_FACTORIAL_HPP
3
4
#include <
stan/agrad/fwd/fvar.hpp
>
5
#include <
stan/meta/traits.hpp
>
6
#include <
stan/math/functions/log_falling_factorial.hpp
>
7
#include <boost/math/special_functions/digamma.hpp>
8
9
namespace
stan {
10
11
namespace
agrad {
12
13
template
<
typename
T>
14
inline
fvar<T>
15
log_falling_factorial
(
const
fvar<T>
& x,
const
fvar<T>
& n) {
16
using
stan::math::log_falling_factorial
;
17
using
boost::math::digamma
;
18
19
return
fvar<T>
(
log_falling_factorial
(x.
val_
, n.
val_
),
20
digamma
(x.
val_
+ 1) * x.
d_
-
digamma
(n.
val_
+ 1) * n.
d_
);
21
}
22
23
template
<
typename
T>
24
inline
fvar<T>
25
log_falling_factorial
(
const
double
x,
const
fvar<T>
& n) {
26
using
stan::math::log_falling_factorial
;
27
using
boost::math::digamma
;
28
29
return
fvar<T>
(
log_falling_factorial
(x, n.
val_
),
30
-
digamma
(n.
val_
+ 1) * n.
d_
);
31
}
32
33
template
<
typename
T>
34
inline
fvar<T>
35
log_falling_factorial
(
const
fvar<T>
& x,
const
double
n) {
36
using
stan::math::log_falling_factorial
;
37
using
boost::math::digamma
;
38
39
return
fvar<T>
(
log_falling_factorial
(x.
val_
, n),
40
digamma
(x.
val_
+ 1) * x.
d_
);
41
}
42
}
43
}
44
#endif
stan::agrad::fvar
Definition:
fvar.hpp:13
traits.hpp
stan::agrad::log_falling_factorial
fvar< T > log_falling_factorial(const fvar< T > &x, const fvar< T > &n)
Definition:
log_falling_factorial.hpp:15
stan::math::log_falling_factorial
boost::math::tools::promote_args< T1, T2 >::type log_falling_factorial(const T1 x, const T2 n)
Definition:
log_falling_factorial.hpp:41
fvar.hpp
log_falling_factorial.hpp
stan::agrad::digamma
fvar< T > digamma(const fvar< T > &x)
Definition:
digamma.hpp:16
stan::agrad::fvar::d_
T d_
Definition:
fvar.hpp:16
stan::agrad::fvar::val_
T val_
Definition:
fvar.hpp:15
[
Stan Home Page
]
© 2011–2014, Stan Development Team.