Java org.apache.commons.math3.analysis.solvers UnivariateSolverUtils fields, constructors, methods, implement or subclass

Example usage for Java org.apache.commons.math3.analysis.solvers UnivariateSolverUtils fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.apache.commons.math3.analysis.solvers UnivariateSolverUtils.

The text is from its open source code.

Method

booleanisBracketing(UnivariateFunction function, final double lower, final double upper)
Check whether the interval bounds bracket a root.
doublesolve(UnivariateFunction function, double x0, double x1)
Convenience method to find a zero of a univariate real function.
doublesolve(UnivariateFunction function, double x0, double x1, double absoluteAccuracy)
Convenience method to find a zero of a univariate real function.
voidverifyBracketing(UnivariateFunction function, final double lower, final double upper)
Check that the endpoints specify an interval and the end points bracket a root.