40 #ifndef _GLIBCXX_TR1_POLY_HERMITE_TCC
41 #define _GLIBCXX_TR1_POLY_HERMITE_TCC 1
68 template<
typename _Tp>
83 _Tp __H_n, __H_nm1, __H_nm2;
85 for (__H_nm2 = __H_0, __H_nm1 = __H_1, __i = 2; __i <= __n; ++__i)
87 __H_n = 2 * (__x * __H_nm1 + (__i - 1) * __H_nm2);
110 template<
typename _Tp>
124 #endif // _GLIBCXX_TR1_POLY_HERMITE_TCC
_Tp __poly_hermite_recursion(const unsigned int __n, const _Tp __x)
This routine returns the Hermite polynomial of order n: by recursion on n.
_Tp __poly_hermite(const unsigned int __n, const _Tp __x)
This routine returns the Hermite polynomial of order n: .