#include <cmath>
Go to the source code of this file.
|
template<class function_t , class derivative_function_t > |
double | qx::newtons_method (const function_t &func, const derivative_function_t &derivativeFunc, double fInitialGuess, double fMaxError=0.0001, size_t nMaxIterations=10000) |
| Find root of the equation using Newtons method. More...
|
|
- Author
- Khrapov
- Date
- 6.08.2022
- Copyright
- © Nick Khrapov, 2022. All right reserved.
Definition in file newtons_method.h.
◆ newtons_method()
template<class function_t , class derivative_function_t >
double qx::newtons_method |
( |
const function_t & |
func, |
|
|
const derivative_function_t & |
derivativeFunc, |
|
|
double |
fInitialGuess, |
|
|
double |
fMaxError = 0.0001 , |
|
|
size_t |
nMaxIterations = 10000 |
|
) |
| |
|
inline |
Find root of the equation using Newtons method.
- Parameters
-
func | - function |
derivativeFunc | - derivative function (dfdx) |
fInitialGuess | - initial root guess |
fMaxError | - max error to stop searching |
nMaxIterations | - max iterations number (sometimes alg breaks) |
- Template Parameters
-
function_t | - function that takes double and returns double |
derivative_function_t | - function that takes double and returns double |
- Return values
-
Definition at line 28 of file newtons_method.h.