Java org.apache.commons.math.analysis.solvers BrentSolver fields, constructors, methods, implement or subclass

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

Introduction

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

The text is from its open source code.

Field

doubleDEFAULT_ABSOLUTE_ACCURACY
Default absolute accuracy
intDEFAULT_MAXIMUM_ITERATIONS
Default maximum number of iterations

Constructor

BrentSolver(UnivariateRealFunction f)
Construct a solver for the given function.
BrentSolver(double absoluteAccuracy)
Construct a solver with the given absolute accuracy.
BrentSolver()
Construct a solver with default properties.
BrentSolver(int maximumIterations, double absoluteAccuracy)
Contstruct a solver with the given maximum iterations and absolute accuracy.

Method