MOAB  4.9.3pre
Eigen::internal::cephes::polevl< Scalar, N > Struct Template Reference

#include <SpecialFunctions.h>

List of all members.

Static Public Member Functions

EIGEN_DEVICE_FUNC static
EIGEN_STRONG_INLINE Scalar 
run (const Scalar x, const Scalar coef[])

Detailed Description

template<typename Scalar, int N>
struct Eigen::internal::cephes::polevl< Scalar, N >

Definition at line 81 of file SpecialFunctions.h.


Member Function Documentation

template<typename Scalar , int N>
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];
  }

The documentation for this struct was generated from the following file:
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines