Stan Math Library  2.10.0
reverse mode automatic differentiation
apply_scalar_unary.hpp
Go to the documentation of this file.
1 #ifndef STAN_MATH_FWD_MAT_VECTORIZE_APPLY_UNARY_SCALAR_HPP
2 #define STAN_MATH_FWD_MAT_VECTORIZE_APPLY_UNARY_SCALAR_HPP
3 
6 
7 namespace stan {
8 
9  namespace math {
10 
21  template <typename F, typename T>
28 
35  static inline return_t apply(const stan::math::fvar<T>& x) {
36  return F::fun(x);
37  }
38  };
39 
40  }
41 }
42 #endif
stan::math::fvar< T > return_t
Function return type, which is same as the argument type for the function, fvar.
static return_t apply(const stan::math::fvar< T > &x)
Apply the function specified by F to the specified argument.
Base template class for vectorization of unary scalar functions defined by a template class F to a sc...

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