|
Optimization: principles and algorithms, by Michel Bierlaire
|
Algorithm 10.1: Local Newton for optimization. More...
Go to the source code of this file.
Functions | |
| function | newtonLocal (in obj, in x0, in eps, in maxiter) |
Applies local Newton algorithm to solve where is the gradient of the objective function. More... | |
Algorithm 10.1: Local Newton for optimization.
Implementation of algorithm 10.1 of [1]
Definition in file newtonLocal.m.
| function newtonLocal | ( | in | obj, |
| in | x0, | ||
| in | eps, | ||
| in | maxiter | ||
| ) |
Applies local Newton algorithm to solve
where
is the gradient of the objective function.
| obj | the name of the Octave function defining and the hessian |
| x0 | the starting point |
| eps | algorithm stops if . |
| maxiter | maximum number of iterations (Default: 100) |