Optimization: principles and algorithms, by Michel Bierlaire
run1613.m
Go to the documentation of this file.
1 %> \file
2 %> Runs example 16.13 of \cite Bier15-book
3 %>
4 %> @note Calls \ref simplexTableau
5 %>
6 %> @ingroup Running
7 %> @ingroup chap16
8 %> @author Michel Bierlaire
9 %> @date Sun Mar 22 12:53:36 2015
10 
11 T = [ 1 2 2 1 0 0 20 ;
12  2 1 2 0 1 0 20 ;
13  2 2 1 0 0 1 20 ;
14  -10 -12 -12 0 0 0 0] ;
15 
16 opttableau = simplexTableau(T)
17 
18 
function simplexTableau(in tab, in rowindex)
Solve a linear optimization problem in standard form using the tableau simplex.
Copyright 2015-2018 Michel Bierlaire