Class InfinityMidPointQuadrature


public class InfinityMidPointQuadrature extends MidPointQuadrature
This is an exact replacement for MidPointQuadrature i.e., returns the nth stage of refinement of the integral of a function from "a" to "b", except that the function is evaluated at evenly spaced points in 1=x rather than in x. This allows the upper limit "b" to be as large and positive as the computer allows, or the lower limit "a" to be as large and negative, but not both. "a" and "b" must have the same sign.
  • Constructor Details

    • InfinityMidPointQuadrature

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