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) |
Finds a root of a non linear equation using the bisection method.
Finds a root of a non linear equation using the Newton-Raphson method.
Finds a root of a non linear equation using the Steffensen method.