MOAB
4.9.3pre
|
#include <SpecialFunctions.h>
Static Public Member Functions | |
EIGEN_DEVICE_FUNC static EIGEN_STRONG_INLINE Scalar | run (const Scalar x, const Scalar coef[]) |
Definition at line 81 of file SpecialFunctions.h.
EIGEN_DEVICE_FUNC static EIGEN_STRONG_INLINE Scalar Eigen::internal::cephes::polevl< Scalar, N >::run | ( | const Scalar | x, |
const Scalar | coef[] | ||
) | [inline, static] |
Definition at line 83 of file SpecialFunctions.h.
{ EIGEN_STATIC_ASSERT((N > 0), YOU_MADE_A_PROGRAMMING_MISTAKE); return polevl<Scalar, N - 1>::run(x, coef) * x + coef[N]; }