Uses of Class
org.hipparchus.analysis.integration.gauss.GaussIntegrator
-
Packages that use GaussIntegrator Package Description org.hipparchus.analysis.integration.gauss Gauss family of quadrature schemes. -
-
Uses of GaussIntegrator in org.hipparchus.analysis.integration.gauss
Subclasses of GaussIntegrator in org.hipparchus.analysis.integration.gauss Modifier and Type Class Description class
SymmetricGaussIntegrator
This class's implementsintegrate
method assuming that the integral is symmetric about 0.Methods in org.hipparchus.analysis.integration.gauss that return GaussIntegrator Modifier and Type Method Description GaussIntegrator
GaussIntegratorFactory. laguerre(int numberOfPoints)
Creates a Gauss-Laguerre integrator of the given order.GaussIntegrator
GaussIntegratorFactory. legendre(int numberOfPoints)
Creates a Gauss-Legendre integrator of the given order.GaussIntegrator
GaussIntegratorFactory. legendre(int numberOfPoints, double lowerBound, double upperBound)
Creates a Gauss-Legendre integrator of the given order.GaussIntegrator
GaussIntegratorFactory. legendreHighPrecision(int numberOfPoints)
Creates a Gauss-Legendre integrator of the given order.GaussIntegrator
GaussIntegratorFactory. legendreHighPrecision(int numberOfPoints, double lowerBound, double upperBound)
Creates an integrator of the given order, and whose call to theintegrate
method will perform an integration on the given interval.
-