Stan  2.5.0
probability, sampling & optimization
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
owens_t.hpp
Go to the documentation of this file.
1 #ifndef STAN__MATH__FUNCTIONS__OWENS__T_HPP
2 #define STAN__MATH__FUNCTIONS__OWENS__T_HPP
3 
4 #include <boost/math/tools/promotion.hpp>
5 #include <boost/math/special_functions/owens_t.hpp>
6 
7 namespace stan {
8  namespace math {
9 
10 
62  template <typename T1, typename T2>
63  inline typename boost::math::tools::promote_args<T1,T2>::type
64  owens_t(const T1& h, const T2& a) {
65  return boost::math::owens_t(h, a);
66  }
67  }
68 }
69 
70 #endif
boost::math::tools::promote_args< T1, T2 >::type owens_t(const T1 &h, const T2 &a)
The Owen's T function of h and a.
Definition: owens_t.hpp:64

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