Home | History | Annotate | Download | only in SpecialFunctions

Lines Matching full:coef

50  * Scalar x, y, coef[N+1];
52 * y = polevl<decltype(x), N>( x, coef);
66 * coef[0] = C , ..., coef[N] = C .
69 * The function p1evl() assumes that coef[N] = 1.0 and is
75 * coef as a const array (constexpr), e.g.
77 * const double coef[] = {1.0, 2.0, 3.0, ...};
83 static EIGEN_STRONG_INLINE Scalar run(const Scalar x, const Scalar coef[]) {
86 return polevl<Scalar, N - 1>::run(x, coef) * x + coef[N];
93 static EIGEN_STRONG_INLINE Scalar run(const Scalar, const Scalar coef[]) {
94 return coef[0];