qxLib
Functions
newtons_method.h File Reference
#include <cmath>

Go to the source code of this file.

Functions

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...
 

Detailed Description

Author
Khrapov
Date
6.08.2022

Definition in file newtons_method.h.

Function Documentation

◆ 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
-approximate root

Definition at line 28 of file newtons_method.h.