Class RombergLowerSquareRootMidPointQuadratureMatrixIntegrator


public class RombergLowerSquareRootMidPointQuadratureMatrixIntegrator extends RombergMatrixIntegrator<LowerSquareRootMidPointMatrixQuadrature>
Computes function integration by using Romberg's method and Lower Square Root Mid-Point Quadrature when lower integration bound lies at a function singularity.
See Also:
  • Constructor Details

    • RombergLowerSquareRootMidPointQuadratureMatrixIntegrator

      public RombergLowerSquareRootMidPointQuadratureMatrixIntegrator(double a, double b, MatrixSingleDimensionFunctionEvaluatorListener listener, double eps) throws com.irurueta.algebra.WrongSizeException
      Constructor.
      Parameters:
      a - Lower limit of integration.
      b - Upper limit of integration.
      listener - listener to evaluate a single dimension matrix (multivariate) function at required points.
      eps - required accuracy.
      Throws:
      com.irurueta.algebra.WrongSizeException - if size notified by provided listener is invalid.
    • RombergLowerSquareRootMidPointQuadratureMatrixIntegrator

      public RombergLowerSquareRootMidPointQuadratureMatrixIntegrator(double a, double b, MatrixSingleDimensionFunctionEvaluatorListener listener) throws com.irurueta.algebra.WrongSizeException
      Constructor with default accuracy.
      Parameters:
      a - Lower limit of integration.
      b - Upper limit of integration.
      listener - listener to evaluate a single dimension function at required points.
      Throws:
      com.irurueta.algebra.WrongSizeException - if size notified by provided listener is invalid.
  • Method Details