Optimization: principles and algorithms, by Michel Bierlaire
run1807restrictedSteps.m
Go to the documentation of this file.
1 %> \file
2 %> Runs example 18.7 with the restricted steps algorithm of \cite Bier15-book (Table 18.5)
3 %>
4 %> @note Calls \ref restrictedSteps
5 %>
6 %> @ingroup Running
7 %> @ingroup chap18
8 %> @author Michel Bierlaire
9 %> @date Mon Mar 23 11:31:03 2015
10 
11 A = [1 1 1];
12 b = 1;
13 c = [1 ; 2 ; 3] ;
14 x0 = [0.6 ; 0.2 ; 0.2];
15 mu0 = c ;
16 lambda0 = 0 ;
17 eps = 1.0e-6 ;
18 [x,lambda,mu] = restrictedSteps(A,b,c,x0,lambda0,mu0)
19 
20 
function restrictedSteps(in A, in b, in c, in x0, in lambda0, in mu0, in eps, in theta)
Applies the interior point algorithm with restricted steps to solve subject to and ...
Copyright 2015-2018 Michel Bierlaire