Optimization: principles and algorithms, by Michel Bierlaire
ex1906.m
Go to the documentation of this file.
1 %> \file
2 %> \f[\min f(x)=100(x_2-x_1^2)^2+(1-x_1)^2\f] subject to \f[x_1-x_2^2-\frac{1}{2} \f]
3 %> @author <a href="http://people.epfl.ch/michel.bierlaire">Michel Bierlaire</a>
4 %> @date Wed Mar 25 17:53:06 2015
5 %> @ingroup Examples
6 %> @ingroup chap20
7 
8 %> @param x value of the variables
9 %> @param index If 0, the objective function is evaluated. If not, the constraint number index is evaluated.
10 function [f,g,H] = ex1906(x,index)
11  if (index == 0)
12  f = 100.0 * (x(2) - x(1) * x(1))^2 + (1.0 - x(1))^2;
13  g = [ -400.0 * x(1) * x(2) + 400 * x(1)^3 - 2.0 + 2 * x(1) ;
14  200.0 * (x(2) - x(1)*x(1)) ];
15  H = [ -400.0 * x(2) + 1200.0 * x(1) * x(1) + 2.0 -400.0 * x(1) ;
16  -400.0 * x(1) 200.0] ;
17 
18  return ;
19  endif
20  if (index == 1)
21  f = x(1) - x(2) * x(2) - 0.5 ;
22  g = [ 1 ; -2.0 * x(2) ] ;
23  H = [0 0 ; 0 -2] ;
24  return
25  endif
26  error("There is only one constraint") ;
27 endfunction
function ex1906(in x, in index)
Copyright 2015-2018 Michel Bierlaire