|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectorg.biojava.utils.math.BinarySearch
public class BinarySearch
solves y = f(x) = 0 by binary search. Only really suitable for monotonic functions as the method will check that the initial values lie on opposite sides of the X=0 axis.
| Constructor Summary | |
|---|---|
BinarySearch()
|
|
| Method Summary | |
|---|---|
static double |
solve(double min,
double max,
double tolerance,
ComputeObject obj)
method that will attempt solving the equation. |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
|---|
public BinarySearch()
| Method Detail |
|---|
public static double solve(double min,
double max,
double tolerance,
ComputeObject obj)
throws BioException
min - lower bound of search space.max - upper bound of search space.tolerance - change in x required to continue iteration.obj - the class of ComputeObject class representing the equation to be solved.
BioException
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||