math
Class RootFinder

java.lang.Object
  extended by math.RootFinder

public class RootFinder
extends java.lang.Object


Constructor Summary
RootFinder()
           
 
Method Summary
static double bisection(double a, double b, math.Function fi)
           
static double falsePosition(double a, double b, math.Function fi)
           
static void main(java.lang.String[] args)
           
static double secant(double a, double b, math.Function fi)
           
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

RootFinder

public RootFinder()
Method Detail

main

public static void main(java.lang.String[] args)

bisection

public static double bisection(double a,
                               double b,
                               math.Function fi)

falsePosition

public static final double falsePosition(double a,
                                         double b,
                                         math.Function fi)

secant

public static final double secant(double a,
                                  double b,
                                  math.Function fi)