Gauss-Newton
Last updated
Last updated
It is an extension of Newton's method used non-linear least square problems where you don't need to calculate the Hessian.
The formulation is something like functions which are called residuals, with variables/parameters to be optimized .
And we want to minimize the sum of sqaures
Update equation for this comes out to be:
and most of the time we have residual as .
​Now just apply Newton's method in this and in the calculation of Hessian of the function, just ignore the 2nd order term, the hessian will basically be some function of jaobian.