Optimization: principles and algorithms, by Michel Bierlaire
runRosenbrockTrustRegion.m
Go to the documentation of this file.
1 %> \file
2 %> Runs Trust region method with line search (Algorithm 12.4) [\ref newtonTrustRegion] on the Rosenbrock problem.
3 %>
4 %> \note Calls \ref newtonTrustRegion
5 %>
6 %> @ingroup Running
7 %> @ingroup chap12
8 %> @author <a href="http://people.epfl.ch/michel.bierlaire">Michel Bierlaire</a>
9 %> @date Sat Mar 21 16:16:57 2015
10 
11 %>
12 
13 delta0 = 10 ;
14 printf("Dogleg\n") ;
15 x0 = [-1.5 ; 1.5] ;
16 [solution, iteres, niter] = newtonTrustRegion('exRosenbrock',x0,delta0,1.0e-11,0) ;
17 format short e
18 iteres(1:niter,:)
19 solution
20 format
21 niter
22 
23 printf("Truncated trust region\n") ;
24 x0 = [-1.5 ; 1.5] ;
25 [solution, iteres, niter] = newtonTrustRegion('exRosenbrock',x0,delta0,1.0e-11,1) ;
26 format short e
27 iteres(1:niter,:)
28 solution
29 format
30 niter
31 
32 
function exRosenbrock(in x)
Example presented in Section 11.6 of .
function newtonTrustRegion(in obj, in x0, in delta0, in eps, in tr)
Applies Newton&#39;s algorithm with trust region to solve where . The parameters of the method are taken...
Copyright 2015-2018 Michel Bierlaire