Stan Math Library  2.11.0
reverse mode automatic differentiation
gradient.hpp
Go to the documentation of this file.
1 #ifndef STAN_MATH_FWD_MAT_FUNCTOR_GRADIENT_HPP
2 #define STAN_MATH_FWD_MAT_FUNCTOR_GRADIENT_HPP
3 
4 #include <stan/math/fwd/core.hpp>
6 
7 namespace stan {
8 
9  namespace math {
10 
39  template <typename T, typename F>
40  void
41  gradient(const F& f,
42  const Eigen::Matrix<T, Eigen::Dynamic, 1>& x,
43  T& fx,
44  Eigen::Matrix<T, Eigen::Dynamic, 1>& grad_fx) {
45  Eigen::Matrix<fvar<T>, Eigen::Dynamic, 1> x_fvar(x.size());
46  grad_fx.resize(x.size());
47  for (int i = 0; i < x.size(); ++i) {
48  for (int k = 0; k < x.size(); ++k)
49  x_fvar(k) = fvar<T>(x(k), k == i);
50  fvar<T> fx_fvar = f(x_fvar);
51  if (i == 0) fx = fx_fvar.val_;
52  grad_fx(i) = fx_fvar.d_;
53  }
54  }
55 
56  } // namespace math
57 } // namespace stan
58 #endif
void gradient(const F &f, const Eigen::Matrix< T, Eigen::Dynamic, 1 > &x, T &fx, Eigen::Matrix< T, Eigen::Dynamic, 1 > &grad_fx)
Calculate the value and the gradient of the specified function at the specified argument.
Definition: gradient.hpp:41

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