Optimization: principles and algorithms, by Michel Bierlaire
run2004.m
Go to the documentation of this file.
1 %> \file
2 %> Runs example 20.4 with the local SQP algorithm of \cite Bier15-book (Table 20.6)
3 %>
4 %> @note Calls \ref localSqp
5 %>
6 %> @ingroup Running
7 %> @ingroup chap20
8 %> @author Michel Bierlaire
9 %> @date Fri Mar 27 15:43:45 2015
10 
11 x0 = [-1.0 ; 0] ;
12 lambda0 = 1 ;
13 eps = 1.0e-8 ;
14 [solution,lambda] = localSqp('ex1906',x0,lambda0,eps,1000)
15 
16 
17 
function localSqp(in problem, in x0, in lambda0, in eps, in maxiter)
Applies the local SQP method to solve subject to where and .
Copyright 2015-2018 Michel Bierlaire