STK++ 0.9.13
|
The namespace Algo enclose all generic algorithms. More...
Functions | |
template<class Function > | |
Real | BrentMethod (IFunction< Function > const &f, Real const &x0, Real const &x1, Real tol) |
perform the brent's algorithm. | |
template<class Function > | |
Real | SecantMethod (IFunction< Function > const &f, Real const &x0, Real const &x1, Real tol) |
apply the secant method for finding the zero of a function. | |
template<class Function > | |
Real | findZero (IFunction< Function > const &f, Real const &x0, Real const &x1, Real tol) |
find the zero of a function. | |