Uses of Interface
de.torstennahm.integrate.quadratureformula.Generator

Packages that use Generator
de.torstennahm.integrate This package and its subpackages provide routines for multi-dimensional integration. 
de.torstennahm.integrate.quadratureformula Provides one-dimensional quadrature formulas for integration. 
de.torstennahm.integrate.sparse This package provides routines for multi-dimensional integration using the sparse grid algorithm and its adaptive version. 
de.torstennahm.integrate.sparse.evaluateindex Provides routines for the evaluation of indexes form the adaptive sparse integration index set. 
 

Uses of Generator in de.torstennahm.integrate
 

Constructors in de.torstennahm.integrate with parameters of type Generator
ProductIntegrator(Generator generator)
           
 

Uses of Generator in de.torstennahm.integrate.quadratureformula
 

Classes in de.torstennahm.integrate.quadratureformula that implement Generator
 class AbstractCachedGenerator
          Provides functionality for caching and retrieving quadrature formulas.
 class ClenshawCurtis
          This class generates the weights for the Clenshaw-Curtis quadrature formula.
 class DeltaGenerator
          This generator takes an underlying quadrature formula generator, producing a corresponding generator for delta integration.
 class GaussHermite
          Generates the Gauss-Hermite quadrature formula.
 class GaussianWrapper
          This generator takes an underlying quadrature formula generator for the uniform distribution on the interval [0,1], producing a generator for the Gaussian normal distribution.
 class GaussLegendre
          This class generates the weights for the Gauss-Legendre quadrature formula.
 class OpenTrapezoidal
          This class generates weights for the modified trapezoidal quadrature formula for the open interval ]0,1[.
 class Patterson
          This class generates the weights for the Patterson quadrature formula.
 class Trapezoidal
          This class generates weights for the trapezoidal quadrature formula on the interval [0,1].
 

Constructors in de.torstennahm.integrate.quadratureformula with parameters of type Generator
DeltaGenerator(Generator generator)
          Creates the DeltaGenerator.
GaussianWrapper(Generator generator)
          Creates the InverseGaussianGenerator.
 

Uses of Generator in de.torstennahm.integrate.sparse
 

Constructors in de.torstennahm.integrate.sparse with parameters of type Generator
DefaultSparseIntegrator(Generator generator)
          Constructor that allows specification of the integration formula.
ProductWeightIntegrator(Generator generator)
          Construct the integrator with the specified quadrature formula generator.
 

Uses of Generator in de.torstennahm.integrate.sparse.evaluateindex
 

Constructors in de.torstennahm.integrate.sparse.evaluateindex with parameters of type Generator
DeltaWeightEvaluator(de.torstennahm.math.Function function, Generator generator)
          Constructs the evaluator.