Uses of Class
org.stellarium.solve.DoubleSolve.DoublePair

Packages that use DoubleSolve.DoublePair
org.stellarium.solve   
 

Uses of DoubleSolve.DoublePair in org.stellarium.solve
 

Methods in org.stellarium.solve that return DoubleSolve.DoublePair
static DoubleSolve.DoublePair DoubleSolve.solve_bisection(UnaryFunction f, double lower, double upper, double err, int maxIter)
          DoubleSolve a function using the bisection method.
static DoubleSolve.DoublePair DoubleSolve.solve_iteration(UnaryFunction f, double x0, double err, int maxIter)
          DoubleSolve using iteration; terminate when error is below err or the maximum number of iterations is reached.
static DoubleSolve.DoublePair DoubleSolve.solveIterationFixed(UnaryFunction f, double x0, int maxIter)
          DoubleSolve using iteration method and a fixed number of steps.