Stan Math Library
2.15.0
reverse mode automatic differentiation
stan
math
fwd
scal
fun
erf.hpp
Go to the documentation of this file.
1
#ifndef STAN_MATH_FWD_SCAL_FUN_ERF_HPP
2
#define STAN_MATH_FWD_SCAL_FUN_ERF_HPP
3
4
#include <
stan/math/fwd/core.hpp
>
5
#include <
stan/math/prim/scal/fun/constants.hpp
>
6
#include <
stan/math/prim/scal/fun/erf.hpp
>
7
#include <
stan/math/prim/scal/fun/square.hpp
>
8
#include <cmath>
9
10
namespace
stan
{
11
namespace
math {
12
13
template
<
typename
T>
14
inline
fvar<T>
erf
(
const
fvar<T>
& x) {
15
using
std::exp
;
16
return
fvar<T>
(
erf
(x.
val_
),
17
x.
d_
*
exp
(-
square
(x.
val_
)) *
TWO_OVER_SQRT_PI
);
18
}
19
20
}
21
}
22
#endif
core.hpp
stan::math::fvar::d_
T d_
Definition:
fvar.hpp:16
stan
Definition:
log_sum_exp.hpp:8
square.hpp
stan::math::erf
fvar< T > erf(const fvar< T > &x)
Definition:
erf.hpp:14
stan::math::square
fvar< T > square(const fvar< T > &x)
Definition:
square.hpp:14
stan::math::TWO_OVER_SQRT_PI
const double TWO_OVER_SQRT_PI
Definition:
constants.hpp:159
stan::math::fvar::val_
T val_
Definition:
fvar.hpp:15
stan::math::exp
fvar< T > exp(const fvar< T > &x)
Definition:
exp.hpp:10
erf.hpp
constants.hpp
stan::math::fvar
Definition:
fvar.hpp:14
[
Stan Home Page
]
© 2011–2016, Stan Development Team.