Uses of Class
com.irurueta.numerical.integration.Integrator
Packages that use Integrator
-
Uses of Integrator in com.irurueta.numerical.integration
Subclasses of Integrator in com.irurueta.numerical.integrationModifier and TypeClassDescriptionclass
Computes function integration by using double exponential quadrature.class
Computes function integration by using an infinity mid-point quadrature.class
Computes function integration by using Lower Square Root mid-point quadrature when lower bound integration bound lies at a function singularity.class
Computes function integration by using Mid-Point quadrature up to desired accuracy.class
QuadratureIntegrator<T extends Quadrature>
Integrates functions given a quadrature implementation up to desired accuracy.class
Computes function integration by using Romberg's method and double exponential quadrature.class
Computes function integration by using Romberg's method and exponential quadrature.class
Computes function integration by using Romberg's method and Infinity mid-point quadrature.class
RombergIntegrator<T extends Quadrature>
Base integrator for implementations based on Romberg's method.class
Computes function integration by using Romberg's method and Lower Square Root Mid-Point Quadrature when lower integration bound lies at a function singularity.class
Computes function integration by using Romberg's method and Mid-Point Quadrature.class
Computes function integration by using Romberg integration.class
Computes function integration by using Romberg's method and Upper Square Root Mid-Point Quadrature when upper integration bound lies at a function singularity.class
Computes function integration by using Simpson's method and double exponential quadrature.class
Computes function integration by using Simpson's rule and infinity mid-point quadrature.class
SimpsonIntegrator<T extends Quadrature>
Base integrator for implementations based on Simpson's method.class
Computes function integration by using Simpson's rule and Lower Square Root mid-point quadrature when lower integration bound lies at a function singularity.class
Computes function integration by using Simpson's rule and mid-point quadrature.class
Computes function integration by using Simpson's rule and trapezoidal quadrature.class
Computes function integration by using Simpson's rule an Upper Square Root mid-point quadrature when upper integration bound lies at a function singularity.class
Computes function integration by using Trapezoidal quadrature up to desired accuracy.class
Computes function integration by using an Upper Square Root mid-point quadrature when upper integration bound lies at a function singularity.Methods in com.irurueta.numerical.integration that return IntegratorModifier and TypeMethodDescriptionstatic Integrator
Integrator.create
(double a, double b, SingleDimensionFunctionEvaluatorListener listener) Creates an integrator using default integrator and quadrature types with default accuracy.static Integrator
Integrator.create
(double a, double b, SingleDimensionFunctionEvaluatorListener listener, double eps) Creates an integrator using default integrator and quadrature types.static Integrator
Integrator.create
(double a, double b, SingleDimensionFunctionEvaluatorListener listener, double eps, IntegratorType integratorType) Creates an integrator using provided integrator type and using default quadrature type.static Integrator
Integrator.create
(double a, double b, SingleDimensionFunctionEvaluatorListener listener, double eps, IntegratorType integratorType, QuadratureType quadratureType) Creates an integrator using provided integrator and quadrature types.static Integrator
Integrator.create
(double a, double b, SingleDimensionFunctionEvaluatorListener listener, IntegratorType integratorType) Creates an integrator using provided integrator type with default accuracy and using default quadrature type.static Integrator
Integrator.create
(double a, double b, SingleDimensionFunctionEvaluatorListener listener, IntegratorType integratorType, QuadratureType quadratureType) Creates an integrator using provided integrator and quadrature types with default accuracy.