Class RombergRealIntegration

  • All Implemented Interfaces:
    RealIntegral

    public class RombergRealIntegration
    extends AbstractRealIntegral
    Implements a Romberg integrator. The class is actually a wrapper to the Romberg integrator in commons-math.
    Version:
    1.0
    Author:
    Christian Fries
    • Constructor Detail

      • RombergRealIntegration

        public RombergRealIntegration​(double lowerBound,
                                      double upperBound,
                                      int numberOfEvaluationPoints)
        Create a Romberg integrator.
        Parameters:
        lowerBound - Lower bound of the integral.
        upperBound - Upper bound of the integral.
        numberOfEvaluationPoints - Maximum number of evaluation points to be used.