legendre_product, an Octave code which computes weighted integrals of products of Legendre polynomials.
legendre_linear_product() takes as input the maximum degree P and the (nonnegative integer) exponent E and computes
Tij = Integral ( -1 <= X <= +1 ) X^E * L(i)(X) * L(j)(X) dxfor I and J between 0 and P.
legendre_exponential_product() takes as input the maximum degree P and the coefficient B and computes
Tij = Integral ( -1 <= X <= +1 ) exp(B*X) * L(i)(X) * L(j)(X) dxfor I and J between 0 and P.
When the polynomial chaos expansion is used to study stochastic differential equations, it is a common task to have to form and compute integrals of the sort considered here.
Note that, because of the orthonormality of the Legendre polynomials, LEGENDRE_LINEAR_PRODUCT will return the identity matrix when E=0, and LEGENDRE_EXPONENTIAL_PRODUCT will return the identity matrix when B=0.
What is more interesting is that, because of the recursion relationship
i*L(i+1)(X) = (2*i-1)*X * L(i)(X) -(i-1)*L(i-1)(X)legendre_linear_product will return a symmetric tridiagonal matrix (with zero diagonal) when E=1.
The computer code and data files described and made available on this web page are distributed under the MIT license
legendre_product is available in a MATLAB version and an Octave version.
hermite_polynomial, an Octave code which evaluates the physicist's Hermite polynomial, the probabilist's Hermite polynomial, the Hermite function, and related functions.
legendre_rule, an Octave code which computes a Gauss-Legendre quadrature rule.
polpak, an Octave code which evaluates a variety of mathematical functions.
quad_rule, an Octave code which defines quadrature rules on a variety of intervals with different weight functions.