Uses of Interface
org.hipparchus.analysis.solvers.BracketedRealFieldUnivariateSolver
-
Packages that use BracketedRealFieldUnivariateSolver Package Description org.hipparchus.analysis.solvers Root finding algorithms, for univariate real functions.org.hipparchus.ode This package provides classes to solve Ordinary Differential Equations problems.org.hipparchus.ode.events Events -
-
Uses of BracketedRealFieldUnivariateSolver in org.hipparchus.analysis.solvers
Classes in org.hipparchus.analysis.solvers that implement BracketedRealFieldUnivariateSolver Modifier and Type Class Description class
FieldBracketingNthOrderBrentSolver<T extends RealFieldElement<T>>
This class implements a modification of the Brent algorithm. -
Uses of BracketedRealFieldUnivariateSolver in org.hipparchus.ode
Methods in org.hipparchus.ode with parameters of type BracketedRealFieldUnivariateSolver Modifier and Type Method Description void
AbstractFieldIntegrator. addEventHandler(FieldODEEventHandler<T> handler, double maxCheckInterval, double convergence, int maxIterationCount, BracketedRealFieldUnivariateSolver<T> solver)
Add an event handler to the integrator.void
FieldODEIntegrator. addEventHandler(FieldODEEventHandler<T> handler, double maxCheckInterval, double convergence, int maxIterationCount, BracketedRealFieldUnivariateSolver<T> solver)
Add an event handler to the integrator. -
Uses of BracketedRealFieldUnivariateSolver in org.hipparchus.ode.events
Constructors in org.hipparchus.ode.events with parameters of type BracketedRealFieldUnivariateSolver Constructor Description FieldEventState(FieldODEEventHandler<T> handler, double maxCheckInterval, T convergence, int maxIterationCount, BracketedRealFieldUnivariateSolver<T> solver)
Simple constructor.
-