Stan Math Library  2.14.0
reverse mode automatic differentiation
asinh.hpp
Go to the documentation of this file.
1 #ifndef STAN_MATH_PRIM_SCAL_FUN_ASINH_HPP
2 #define STAN_MATH_PRIM_SCAL_FUN_ASINH_HPP
3 
5 #include <boost/math/special_functions/asinh.hpp>
6 
7 namespace stan {
8  namespace math {
9 
18  inline double asinh(double x) {
20  }
21 
28  inline double asinh(int x) {
29  return asinh(static_cast<double>(x));
30  }
31 
32  }
33 }
34 #endif
fvar< T > asinh(const fvar< T > &x)
Definition: asinh.hpp:13
var asinh(const var &a)
The inverse hyperbolic sine function for variables (C99).
Definition: asinh.hpp:58
boost::math::policies::policy< boost::math::policies::overflow_error< boost::math::policies::errno_on_error >, boost::math::policies::pole_error< boost::math::policies::errno_on_error > > boost_policy_t
Boost policy that overrides the defaults to match the built-in C++ standard library functions...

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