QUADRATURE_RULES_HERMITE
Quadrature Rules of Gauss-Hermite Type


QUADRATURE_RULES_HERMITE is a dataset directory which contains examples of quadrature rules of Gauss-Hermite type.

Gauss-Hermite quadrature rules are designed to approximate integrals on the infinite interval (-oo,+oo).

The Gauss Hermite quadrature assumes that the integrand we are considering has a form like:

        Integral ( -oo < x < +oo ) w(x) * f(x) dx
      
where the factor w(x) is regarded as a weight factor.

We consider three variations of the rule, depending on the form of the weight factor w(x):

The corresponding Gauss-Hermite rule that uses order points will approximate the integral by

        sum ( 1 <= i <= order ) w(i) * f(x(i)) 
      
where, confusingly, w(i) is a vector of quadrature weights, which has no connection with the w(x) weight function.

For this directory, a quadrature rule is stored as three files, containing the weights, the points, and a file containing two points defining the endpoints of the region. Since the Hermite rules are defined on an infinite region, we set the endpoints to a very large negative and positive values respectively, and hope the program will understand what we mean.

Example:

We consider a physicist weighted Gauss-Hermite quadrature rule of order 4.

Here is the text of the "W" file storing the weights of such a rule:


        0.8131283544699208E-01
        0.8049140900030080    
        0.8049140900030080    
        0.8131283544699208E-01
       

Here is the text of the "X" file storing the abscissas of such a rule:

 
        -1.650680123885785      
        -0.5246476232752904    
         0.5246476232752904    
         1.650680123885785
      

Here is the text of the "R" file storing the lower and upper limits of the region:


        -1.0E+30
         1.0E+30
      

Licensing:

The computer code and data files described and made available on this web page are distributed under the GNU LGPL license.

Related Data and Programs:

Sample Files:

Unweighted Gauss-Hermite Rule, Order 1:

Unweighted Gauss-Hermite Rule, Order 2:

Unweighted Gauss-Hermite Rule, Order 4:

Unweighted Gauss-Hermite Rule, Order 8:

Unweighted Gauss-Hermite Rule, Order 16:

Unweighted Gauss-Hermite Rule, Order 32:

Unweighted Gauss-Hermite Rule, Order 64:

Physicist weighted Gauss-Hermite Rule, Order 1:

Physicist weighted Gauss-Hermite Rule, Order 2:

Physicist weighted Gauss-Hermite Rule, Order 4:

Physicist weighted Gauss-Hermite Rule, Order 8:

Physicist weighted Gauss-Hermite Rule, Order 16:

Physicist weighted Gauss-Hermite Rule, Order 32:

Physicist weighted Gauss-Hermite Rule, Order 64:

Probabilist weighted Gauss-Hermite Rule, Order 1:

Probabilist weighted Gauss-Hermite Rule, Order 2:

Probabilist weighted Gauss-Hermite Rule, Order 4:

Probabilist weighted Gauss-Hermite Rule, Order 8:

Probabilist weighted Gauss-Hermite Rule, Order 16:

Probabilist weighted Gauss-Hermite Rule, Order 32:

Probabilist weighted Gauss-Hermite Rule, Order 64:

You can go up one level to the DATASETS page.


Last revised on 21 May 2009.