Uses of Interface
org.stellarium.functional.UnaryFunction

Packages that use UnaryFunction
org.stellarium   
org.stellarium.solve   
 

Uses of UnaryFunction in org.stellarium
 

Classes in org.stellarium that implement UnaryFunction
(package private)  class EllipticalOrbit.SolveKeplerFunc1
          Standard iteration for solving Kepler's Equation
(package private)  class EllipticalOrbit.SolveKeplerFunc2
          Faster converging iteration for Kepler's Equation; more efficient than above for orbits with eccentricities greater than 0.3.
(package private)  class EllipticalOrbit.SolveKeplerLaguerreConway
           
(package private)  class EllipticalOrbit.SolveKeplerLaguerreConwayHyp
           
 

Uses of UnaryFunction in org.stellarium.solve
 

Methods in org.stellarium.solve with parameters of type UnaryFunction
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.