Optimization: principles and algorithms, by Michel Bierlaire
runBoundConstraints.m
Go to the documentation of this file.
1 %> \file
2 %> Example where some combinations of basic variables are associated with a singular matrix B
3 %>
4 %> @note Calls \ref vertexEnumeration
5 %>
6 %> @ingroup Running
7 %> @ingroup chap16
8 %> @author Michel Bierlaire
9 %> @date Sun Mar 22 11:29:43 2015
10 A = [1 0 1 0 ; 0 1 0 1] ;
11 b = [10 ; 5] ;
12 c = [-1 ; -1 ; 0 ; 0 ] ;
13 [solution,optvalue] = vertexEnumeration(A,b,c)
14 
function vertexEnumeration(in A, in b, in c)
Applies the vertex enumeration algorithm to solve subject to and , where , , and ...
Copyright 2015-2018 Michel Bierlaire