Uses of Interface
dev.nm.analysis.integration.univariate.riemann.IterativeIntegrator
-
Packages that use IterativeIntegrator Package Description dev.nm.analysis.integration.univariate.riemann.newtoncotes -
-
Uses of IterativeIntegrator in dev.nm.analysis.integration.univariate.riemann.newtoncotes
Classes in dev.nm.analysis.integration.univariate.riemann.newtoncotes that implement IterativeIntegrator Modifier and Type Class Description class
Midpoint
The midpoint rule computes an approximation to a definite integral, made by finding the area of a collection of rectangles whose heights are determined by the values of the function.class
NewtonCotes
The Newton-Cotes formulae, also called the Newton-Cotes quadrature rules or simply Newton-Cotes rules, are a group of formulae for numerical integration (also called quadrature) based on evaluating the integrand at equally-spaced points.class
Simpson
Simpson's rule can be thought of as a special case of Romberg's method.class
Trapezoidal
The Trapezoidal rule is a closed type Newton-Cotes formula, where the integral interval is evenly divided into N sub-intervals.Constructors in dev.nm.analysis.integration.univariate.riemann.newtoncotes with parameters of type IterativeIntegrator Constructor Description Romberg(IterativeIntegrator integrator)
Extend an integrator using Romberg's method.
-