| 805 | |
| 806 | /** \internal \returns the log10 of \a a (coeff-wise) */ |
| 807 | template<typename Packet> EIGEN_DECLARE_FUNCTION_ALLOWING_MULTIPLE_DEFINITIONS |
| 808 | Packet plog2(const Packet& a) { |
| 809 | typedef typename internal::unpacket_traits<Packet>::type Scalar; |
| 810 | return pmul(pset1<Packet>(Scalar(EIGEN_LOG2E)), plog(a)); |
| 811 | } |
| 812 | |
| 813 | /** \internal \returns the square-root of \a a (coeff-wise) */ |
| 814 | template<typename Packet> EIGEN_DECLARE_FUNCTION_ALLOWING_MULTIPLE_DEFINITIONS |
no test coverage detected