| 1062 | /** \internal \returns the arc tangent of \a a (coeff-wise) */ |
| 1063 | template <typename Packet> |
| 1064 | EIGEN_DECLARE_FUNCTION_ALLOWING_MULTIPLE_DEFINITIONS Packet patan(const Packet& a) { |
| 1065 | EIGEN_USING_STD(atan); |
| 1066 | return atan(a); |
| 1067 | } |
| 1068 | |
| 1069 | /** \internal \returns the hyperbolic tan of \a a (coeff-wise) */ |
| 1070 | template <typename Packet> |
no test coverage detected