ph_nonLinearEquations

Function summary
bisection f range &key (error_p 0.001) (iterations 100)
newton-raphson f df point &key (error_p 0.001) (iterations 100)
regula-falsi f range &key (error_p 0.001) (iterations 100)
steffensen f point &key (error_p 0.001) (iterations 100)
PH_ROOTS    [Package]

This package contains functions to compute roots of non linear equations.

bisection   f range &key (error_p 0.001) (iterations 100)  [Function]

Finds a root of a non linear equation using the bisection method.

newton-raphson   f df point &key (error_p 0.001) (iterations 100)  [Function]

Finds a root of a non linear equation using the Newton-Raphson method.

steffensen   f point &key (error_p 0.001) (iterations 100)  [Function]

Finds a root of a non linear equation using the Steffensen method.

regula-falsi   f range &key (error_p 0.001) (iterations 100)  [Function]

Finds a root of a non linear equation using the regula falsi method.