SpecialFunctionsImpl.h | 41 /* polevl (modified for Eigen) 52 * y = polevl<decltype(x), N>( x, coef); 71 * otherwise the same as polevl(). 81 struct polevl { struct in namespace:Eigen::internal::cephes 86 return polevl<Scalar, N - 1>::run(x, coef) * x + coef[N]; 91 struct polevl<Scalar, 0> { struct in namespace:Eigen::internal::cephes 194 return z * cephes::polevl<float, 3>::run(z, A); 216 return z * cephes::polevl<double, 6>::run(z, A); [all...] |