Class SimpsonDoubleExponentialRuleQuadratureIntegrator


public class SimpsonDoubleExponentialRuleQuadratureIntegrator extends SimpsonIntegrator<DoubleExponentialRuleQuadrature>
Computes function integration by using Simpson's method and double exponential quadrature. Double exponential quadrature allows improper integrands containing singularities to be integrated.
See Also:
  • Constructor Details

    • SimpsonDoubleExponentialRuleQuadratureIntegrator

      public SimpsonDoubleExponentialRuleQuadratureIntegrator(double a, double b, double hmax, SingleDimensionFunctionEvaluatorListener listener, double eps)
      Constructor.
      Parameters:
      a - Lower limit of integration.
      b - Upper limit of integration.
      hmax - Maximum step size. This quadrature transforms the range of integration to [-hmax, hmax].
      listener - listener to evaluate a single dimension function at required points.
      eps - required accuracy.
    • SimpsonDoubleExponentialRuleQuadratureIntegrator

      public SimpsonDoubleExponentialRuleQuadratureIntegrator(double a, double b, SingleDimensionFunctionEvaluatorListener listener, double eps)
      Constructor.
      Parameters:
      a - Lower limit of integration.
      b - Upper limit of integration.
      listener - listener to evaluate a single dimension function at required points.
      eps - required accuracy.
    • SimpsonDoubleExponentialRuleQuadratureIntegrator

      public SimpsonDoubleExponentialRuleQuadratureIntegrator(double a, double b, double hmax, SingleDimensionFunctionEvaluatorListener listener)
      Constructor with default accuracy.
      Parameters:
      a - Lower limit of integration.
      b - Upper limit of integration.
      hmax - Maximum step size. This quadrature transforms the range of integration to [-hmax, hmax].
      listener - listener to evaluate a single dimension function at required points.
    • SimpsonDoubleExponentialRuleQuadratureIntegrator

      public SimpsonDoubleExponentialRuleQuadratureIntegrator(double a, double b, SingleDimensionFunctionEvaluatorListener listener)
      Constructor with default accuracy and default maximum step size.
      Parameters:
      a - Lower limit of integration.
      b - Upper limit of integration.
      listener - listener to evaluate a single dimension function at required points.
    • SimpsonDoubleExponentialRuleQuadratureIntegrator

      public SimpsonDoubleExponentialRuleQuadratureIntegrator(double a, double b, double hmax, DoubleExponentialSingleDimensionFunctionEvaluatorListener listener, double eps)
      Constructor.
      Parameters:
      a - Lower limit of integration.
      b - Upper limit of integration.
      hmax - Maximum step size. This quadrature transforms the range of integration to [-hmax, hmax].
      listener - listener to evaluate a single dimension function at required points for double exponential quadrature to take into account any non-mild singularities.
      eps - required accuracy.
    • SimpsonDoubleExponentialRuleQuadratureIntegrator

      public SimpsonDoubleExponentialRuleQuadratureIntegrator(double a, double b, DoubleExponentialSingleDimensionFunctionEvaluatorListener listener, double eps)
      Constructor with default maximum step size.
      Parameters:
      a - Lower limit of integration.
      b - Upper limit of integration.
      listener - listener to evaluate a single dimension function at required points for double exponential quadrature to take into account any non-mild singularities.
      eps - required accuracy.
    • SimpsonDoubleExponentialRuleQuadratureIntegrator

      public SimpsonDoubleExponentialRuleQuadratureIntegrator(double a, double b, double hmax, DoubleExponentialSingleDimensionFunctionEvaluatorListener listener)
      Constructor with default accuracy.
      Parameters:
      a - Lower limit of integration.
      b - Upper limit of integration.
      hmax - Maximum step size. This quadrature transforms the range of integration to [-hmax, hmax].
      listener - listener to evaluate a single dimension function at required points for double exponential quadrature to take into account any non-mild singularities.
    • SimpsonDoubleExponentialRuleQuadratureIntegrator

      public SimpsonDoubleExponentialRuleQuadratureIntegrator(double a, double b, DoubleExponentialSingleDimensionFunctionEvaluatorListener listener)
      Constructor with default accuracy and default maximum step size.
      Parameters:
      a - Lower limit of integration.
      b - Upper limit of integration.
      listener - listener to evaluate a single dimension function at required points for double exponential quadrature to take into account any non-mild singularities.
  • Method Details