echo on
f = [7 9 8 3 4 6];
Beq = [ 1 0 0 1 0 0; 0 1 0 0 1 0; 0 0 1 0 0 1;
        1 1 1 0 0 0; 0 0 0 1 1 1]; 
lb = zeros(6,1); 

beq = [500; 200; 100; 300; 500];
                 
[ x, fval] = linprog(f',[],[],Beq,beq, lb, [])


x =

  200.0000
    0.0000
  100.0000
  300.0000
  200.0000
    0.0000


fval =

   3.9000e+03

diary off
f = [7 9 8 3 4 6];
Beq = [ 1 0 0 1 0 0; 0 1 0 0 1 0; 0 0 1 0 0 1;
        1 1 1 0 0 0; 0 0 0 1 1 1]; 
lb = zeros(6,1); 
beq = [500; 200; 100; 300; 500];            
[ x, fval] = linprog(f',[],[],Beq,beq, lb, [])
{Previously accessible file "C:\Program
Files\MATLAB\R2012a\toolbox\work\linprog.m" is now inaccessible.

Error in <a href="matlab:helpUtils.errorDocCallback('tr01', 'C:\Program Files\MATLAB\R2012a\toolbox\work\tr01.m', 13)" style="font-weight:bold">tr01</a> (<a href="matlab: opentoline('C:\Program Files\MATLAB\R2012a\toolbox\work\tr01.m',13,0)">line 13</a>)
[ x, fval] = linprog(f',[],[],Beq,beq, lb, [])
} 
help linprog

No help found for linprog.m.

help linprog

No help found for linprog.m.

help linprog

No help found for linprog.m.

doc linprog
help linprog

No help found for linprog.m.

type linprog
{Error using <a href="matlab:helpUtils.errorDocCallback('type')" style="font-weight:bold">type</a>
File 'linprog' not found.
} 
type linprog.m
{Error using <a href="matlab:helpUtils.errorDocCallback('type')" style="font-weight:bold">type</a>
File 'linprog.m' not found.
} 
try open('linprog.m'); catch edit('linprog.m'); end

Exception in thread "AWT-EventQueue-0" java.awt.print.PrinterException: Invalid name of PrintService.
	at sun.awt.windows.WPrinterJob.setNativePrintService(Native Method)
	at sun.awt.windows.WPrinterJob.getPrintService(Unknown Source)
	at sun.awt.windows.WPrinterJob.printDialog(Unknown Source)
	at com.mathworks.mlwidgets.html.HTMLPrinterJob.printThePilot(HTMLPrinterJob.java:130)
	at com.mathworks.mlwidgets.html.HTMLPrinterJob.access$100(HTMLPrinterJob.java:29)
	at com.mathworks.mlwidgets.html.HTMLPrinterJob$HTMLPrintClass.printMethod(HTMLPrinterJob.java:95)
	at com.mathworks.mlwidgets.html.HTMLPrinterJob$HTMLPrintClass.run(HTMLPrinterJob.java:65)
	at java.awt.event.InvocationEvent.dispatch(Unknown Source)
	at java.awt.EventQueue.dispatchEvent(Unknown Source)
	at java.awt.EventDispatchThread.pumpOneEventForFilters(Unknown Source)
	at java.awt.EventDispatchThread.pumpEventsForFilter(Unknown Source)
	at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
	at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
	at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
	at java.awt.EventDispatchThread.run(Unknown Source)
tr01

clear all
clc
diary tr01polic.txt
echo on
f = [7 9 8 3 4 6];
Beq = [ 1 0 0 1 0 0; 0 1 0 0 1 0; 0 0 1 0 0 1;
        1 1 1 0 0 0; 0 0 0 1 1 1]; 
lb = zeros(6,1); 
beq = [500; 200; 100; 300; 500];            
[ x, fval] = linprog(f',[],[],Beq,beq, lb, [])
{Previously accessible file "C:\Program Files\MATLAB\R2012a\toolbox\work\linprog.m" is now inaccessible.

Error in <a href="matlab:helpUtils.errorDocCallback('tr01', 'C:\Program Files\MATLAB\R2012a\toolbox\work\tr01.m', 13)" style="font-weight:bold">tr01</a> (<a href="matlab: opentoline('C:\Program Files\MATLAB\R2012a\toolbox\work\tr01.m',13,0)">line 13</a>)
[ x, fval] = linprog(f',[],[],Beq,beq, lb, [])
} 
type linprog.m

function [x,fval,exitflag,output,lambda]=linprog(f,A,B,Aeq,Beq,lb,ub,x0,options)
%LINPROG Linear programming.
%   X = LINPROG(f,A,b) attempts to solve the linear programming problem:
%        
%            min f'*x    subject to:   A*x <= b 
%             x
%
%   X = LINPROG(f,A,b,Aeq,beq) solves the problem above while additionally
%   satisfying the equality constraints Aeq*x = beq.
%   
%   X = LINPROG(f,A,b,Aeq,beq,LB,UB) defines a set of lower and upper
%   bounds on the design variables, X, so that the solution is in
%   the range LB <= X <= UB. Use empty matrices for LB and UB
%   if no bounds exist. Set LB(i) = -Inf if X(i) is unbounded below; 
%   set UB(i) = Inf if X(i) is unbounded above.
%
%   X = LINPROG(f,A,b,Aeq,beq,LB,UB,X0) sets the starting point to X0. This
%   option is only available with the active-set algorithm. The default
%   interior point algorithm will ignore any non-empty starting point.
%
%   X = LINPROG(f,A,b,Aeq,beq,LB,UB,X0,OPTIONS) minimizes with the default 
%   optimization parameters replaced by values in the structure OPTIONS, an 
%   argument created with the OPTIMSET function. See OPTIMSET for details.  
%   Options are Display, Diagnostics, TolFun, LargeScale, MaxIter. 
%   Currently, only 'final' and 'off' are valid values for the parameter 
%   Display when LargeScale is 'off' ('iter' is valid when LargeScale 
%   is 'on').
%
%   X = LINPROG(PROBLEM) finds the minimum for PROBLEM. PROBLEM is a
%   structure with the vector 'f' in PROBLEM.f, the linear inequality
%   constraints in PROBLEM.Aineq and PROBLEM.bineq, the linear equality
%   constraints in PROBLEM.Aeq and PROBLEM.beq, the lower bounds in
%   PROBLEM.lb, the upper bounds in  PROBLEM.ub, the start point
%   in PROBLEM.x0, the options structure in PROBLEM.options, and solver
%   name 'linprog' in PROBLEM.solver. Use this syntax to solve at the 
%   command line a problem exported from OPTIMTOOL. The structure PROBLEM 
%   must have all the fields.
%
%   [X,FVAL] = LINPROG(f,A,b) returns the value of the objective function 
%   at X: FVAL = f'*X.
%
%   [X,FVAL,EXITFLAG] = LINPROG(f,A,b) returns an EXITFLAG that describes 
%   the exit condition of LINPROG. Possible values of EXITFLAG and the 
%   corresponding exit conditions are
%
%     1  LINPROG converged to a solution X.
%     0  Maximum number of iterations reached.
%    -2  No feasible point found.
%    -3  Problem is unbounded.
%    -4  NaN value encountered during execution of algorithm.
%    -5  Both primal and dual problems are infeasible.
%    -7  Magnitude of search direction became too small; no further 
%         progress can be made. The problem is ill-posed or badly 
%         conditioned.
%
%   [X,FVAL,EXITFLAG,OUTPUT] = LINPROG(f,A,b) returns a structure OUTPUT
%   with the number of iterations taken in OUTPUT.iterations, maximum of 
%   constraint violations in OUTPUT.constrviolation, the type of
%   algorithm used in OUTPUT.algorithm, the number of conjugate gradient
%   iterations in OUTPUT.cgiterations (= 0, included for backward
%   compatibility), and the exit message in OUTPUT.message.
%
%   [X,FVAL,EXITFLAG,OUTPUT,LAMBDA] = LINPROG(f,A,b) returns the set of 
%   Lagrangian multipliers LAMBDA, at the solution: LAMBDA.ineqlin for the 
%   linear inequalities A, LAMBDA.eqlin for the linear equalities Aeq, 
%   LAMBDA.lower for LB, and LAMBDA.upper for UB.
%   
%   NOTE: the LargeScale (the default) version of LINPROG uses a 
%         primal-dual method. Both the primal problem and the dual problem 
%         must be feasible for convergence. Infeasibility messages of 
%         either the primal or dual, or both, are given as appropriate. The
%         primal problem in standard form is 
%              min f'*x such that A*x = b, x >= 0.
%         The dual problem is
%              max b'*y such that A'*y + s = f, s >= 0.
%
%   See also QUADPROG.

%   Copyright 1990-2011 The MathWorks, Inc.
%   $Revision.2 $  $Date: 2011/06/30 16:36:50 $

% If just 'defaults' passed in, return the default options in X

% Default MaxIter is set to [] because its value depends on the algorithm.
defaultopt = struct( ...
    'Diagnostics','off', ...
    'Display','final', ...
    'LargeScale','on', ...
    'MaxIter',[], ...
    'Simplex','off', ...
    'TolFun',[]);

if nargin==1 && nargout <= 1 && isequal(f,'defaults')
   x = defaultopt;
   return
end

% Handle missing arguments
if nargin < 9
    options = [];
    if nargin < 8
        x0 = [];
        if nargin < 7
            ub = [];
            if nargin < 6
                lb = [];
                if nargin < 5
                    Beq = [];
                    if nargin < 4
                        Aeq = [];
                    end
                end
            end
        end
    end
end

% Detect problem structure input
problemInput = false;
if nargin == 1
    if isa(f,'struct')
        problemInput = true;
        [f,A,B,Aeq,Beq,lb,ub,x0,options] = separateOptimStruct(f);
    else % Single input and non-structure.
        error(message('optim:linprog:InputArg'));
    end
end

if nargin < 3 && ~problemInput
  error(message('optim:linprog:NotEnoughInputs'))
end

% Check for non-double inputs
% SUPERIORFLOAT errors when superior input is neither single nor double;
% We use try-catch to override SUPERIORFLOAT's error message when input
% data type is integer.
try
    dataType = superiorfloat(f,A,B,Aeq,Beq,lb,ub,x0);
catch ME
    if strcmp(ME.identifier,'MATLAB:datatypes:superiorfloat')
        dataType = 'notDouble';
    end
end

if ~strcmp(dataType,'double')
    error(message('optim:linprog:NonDoubleInput'))
end

if nargout > 3
   computeConstrViolation = true;
   computeFirstOrderOpt = true;
   % Lagrange multipliers are needed to compute first-order optimality
   computeLambda = true; 
else 
   computeConstrViolation = false;
   computeFirstOrderOpt = false;
   computeLambda = false;   
end

% Options setup
if isfield(options,'Simplex')
    useSimplex = isequal(optimget(options,'Simplex',defaultopt,'fast'), 'on');
else
    useSimplex = isequal(defaultopt.Simplex, 'on');
end

largescale = strcmpi(optimget(options,'LargeScale',defaultopt,'fast'),'on');
diagnostics = strcmpi(optimget(options,'Diagnostics',defaultopt,'fast'),'on');
switch optimget(options,'Display',defaultopt,'fast')
case {'off','none'}
   verbosity = 0;
case {'iter','iter-detailed'}
   verbosity = 2;
case {'final','final-detailed'}
   verbosity = 1;
otherwise
   verbosity = 1;
end

% Set the constraints up: defaults and check size
[nineqcstr,nvarsineq]=size(A);
[neqcstr, nvarseq]=size(Aeq);
nvars = max([length(f),nvarsineq,nvarseq]); % In case A is empty

if nvars == 0
    % The problem is empty possibly due to some error in input.
    error(message('optim:linprog:EmptyProblem'));
end

if isempty(f), f=zeros(nvars,1); end
if isempty(A), A=zeros(0,nvars); end
if isempty(B), B=zeros(0,1); end       
if isempty(Aeq), Aeq=zeros(0,nvars); end
if isempty(Beq), Beq=zeros(0,1); end       

% Set to column vectors
f = f(:);
B = B(:);
Beq = Beq(:);

if ~isequal(length(B),nineqcstr)
    error(message('optim:linprog:SizeMismatchRowsOfA'));
elseif ~isequal(length(Beq),neqcstr)
    error(message('optim:linprog:SizeMismatchRowsOfAeq'));
elseif ~isequal(length(f),nvarsineq) && ~isempty(A)
    error(message('optim:linprog:SizeMismatchColsOfA'));
elseif ~isequal(length(f),nvarseq) && ~isempty(Aeq)
    error(message('optim:linprog:SizeMismatchColsOfAeq'));
end

[x0,lb,ub,msg] = checkbounds(x0,lb,ub,nvars);
if ~isempty(msg)
   exitflag = -2;
   x=x0; fval = []; lambda = [];
   output.iterations = 0;
   output.constrviolation = [];
   output.firstorderopt = [];
   output.algorithm = ''; % not known at this stage
   output.cgiterations = [];
   output.message = msg;
   if verbosity > 0
      disp(msg)
   end
   return
end

caller = 'linprog'; 
ncstr = nineqcstr + neqcstr;

if largescale
   OUTPUT.algorithm = 'large-scale: interior point';
elseif useSimplex
   OUTPUT.algorithm = 'medium-scale: simplex';
else
   OUTPUT.algorithm  = 'medium-scale: active-set';
end

if diagnostics 
   % Do diagnostics on information so far
   gradflag = []; hessflag = []; constflag = false; gradconstflag = false;
   non_eq=0;non_ineq=0; lin_eq=size(Aeq,1); lin_ineq=size(A,1); XOUT=ones(nvars,1);
   funfcn{1} = []; confcn{1}=[];
   diagnose('linprog',OUTPUT,gradflag,hessflag,constflag,gradconstflag,...
      XOUT,non_eq,non_ineq,lin_eq,lin_ineq,lb,ub,funfcn,confcn);
end

if (largescale)
    if (useSimplex)
        warning(message('optim:linprog:IgnoreSimplexOn'))
    end
    if ~isempty(x0) && verbosity > 0
        fprintf(getString(message('optim:linprog:IgnoreX0','Large scale (interior point)')));
    end
    % Set the default values of TolFun and MaxIter for this algorithm
    defaultopt.TolFun = 1e-8;
    defaultopt.MaxIter = 85;
    warningstate0 = warning('off', 'MATLAB:cholinc:ArgInfToBeRemoved');
    [x,fval,lambda,exitflag,output] = lipsol(f,A,B,Aeq,Beq,lb,ub,options,defaultopt,computeLambda);
    warning(warningstate0);
elseif (useSimplex)
    if ~isempty(x0) && verbosity > 0
        fprintf(getString(message('optim:linprog:IgnoreX0','Simplex')));
    end
    % Set the default values of TolFun and MaxIter for this algorithm
    defaultopt.TolFun = 1e-6;
    defaultopt.MaxIter = '100*NumberOfVariables';
    [x,fval,lambda,exitflag,output] = simplex(f,A,B,Aeq,Beq,lb,ub,options,defaultopt,computeLambda);
    % Remap exitflags if necessary
    if exitflag == -1
      exitflag = -2;
    elseif exitflag == -2
      exitflag = -3;
    end
else
    if ~largescale && (issparse(A) || issparse(Aeq) )% asked for medium-scale but sparse
        if verbosity > 0
            fprintf(getString(message('optim:linprog:ConvertSparseToFull','medium-scale (active-set)')));
        end
    end
    if isempty(x0), x0=zeros(nvars,1); end
    % Set the default value of MaxIter for this algorithm
    defaultopt.MaxIter = '10*max(NumberOfVariables,NumberOfInequalities+NumberOfBounds)';
    % Create qpsub options structure
    lpmaxiter = optimget(options,'MaxIter',defaultopt,'fast');
    if ischar(lpmaxiter)
        if isequal(lower(lpmaxiter),'10*max(numberofvariables,numberofinequalities+numberofbounds)')
            lpmaxiter = 10*max(nvars,ncstr-neqcstr);
        else
            error(message('optim:linprog:InvalidMaxIter'))
        end
    end
    lpoptions.MaxIter = lpmaxiter;
    % A fixed constraint tolerance (eps) is used for constraint
    % satisfaction; no need to specify any value
    lpoptions.TolCon = [];

    [x,lambdaqp,exitflag,output,~,~,msg]= ...
        qpsub([],full(f),full([Aeq;A]),full([Beq;B]),lb,ub,x0,neqcstr,verbosity,caller,ncstr, ...
              nvars,lpoptions); 
    output.algorithm = 'medium-scale: active-set';
end

if isequal(OUTPUT.algorithm , 'medium-scale: active-set')
    fval = f'*x;
    if computeLambda || computeFirstOrderOpt
        llb = length(lb);
        lub = length(ub);
        lambda.lower = zeros(llb,1);
        lambda.upper = zeros(lub,1);
        arglb = ~isinf(lb); lenarglb = nnz(arglb);
        argub = ~isinf(ub); lenargub = nnz(argub);
        lambda.eqlin = lambdaqp(1:neqcstr,1);
        lambda.ineqlin = lambdaqp(neqcstr+1:neqcstr+nineqcstr,1);
        lambda.lower(arglb) = lambdaqp(neqcstr+nineqcstr+1:neqcstr+nineqcstr+lenarglb);
        lambda.upper(argub) = lambdaqp(neqcstr+nineqcstr+lenarglb+1:neqcstr+nineqcstr+lenarglb+lenargub);
    end
    output.cgiterations =[];
    
    if exitflag == 1
        normalTerminationMsg = sprintf('Optimization terminated.');
        if verbosity > 0
            disp(normalTerminationMsg)
        end
        if isempty(msg)
            output.message = normalTerminationMsg;
        else
            % append normal termination msg to current output msg
            output.message = sprintf('%s\n%s',msg,normalTerminationMsg);
        end
    else
        output.message = msg;
    end
else % large-scale & simplex algorithms
    % The constraint violation is always computed for medium-scale.
    % Compute constraint violation when x is not empty (lipsol/simplex presolve
    % can return empty x). 
    if computeConstrViolation && ~isempty(x)
        output.constrviolation = max([0; norm(Aeq*x-Beq, inf); (lb-x); (x-ub); (A*x-B)]);
    else
        output.constrviolation = [];
    end
end

% Compute first order optimality if needed. This information does not come
% from either qpsub, lipsol, or simplex.
if computeFirstOrderOpt
    output.firstorderopt = computeKKTErrorForQPLP([],f,A,B,Aeq,Beq,lb,ub,lambda,x);
else
    output.firstorderopt = [];
end


tr01

clear all
clc
diary tr01polic.txt
echo on
f = [7 9 8 3 4 6];
Beq = [ 1 0 0 1 0 0; 0 1 0 0 1 0; 0 0 1 0 0 1;
        1 1 1 0 0 0; 0 0 0 1 1 1]; 
lb = zeros(6,1); 
beq = [500; 200; 100; 300; 500];            
[ x, fval] = linprog(f',[],[],Beq,beq, lb, [])
{Previously accessible file "C:\Program Files\MATLAB\R2012a\toolbox\work\lipsol.m" is now inaccessible.

Error in <a href="matlab:helpUtils.errorDocCallback('linprog', 'C:\Program Files\MATLAB\R2012a\toolbox\work\linprog.m', 258)" style="font-weight:bold">linprog</a> (<a href="matlab: opentoline('C:\Program Files\MATLAB\R2012a\toolbox\work\linprog.m',258,0)">line 258</a>)
    [x,fval,lambda,exitflag,output] = lipsol(f,A,B,Aeq,Beq,lb,ub,options,defaultopt,computeLambda);

Error in <a href="matlab:helpUtils.errorDocCallback('tr01', 'C:\Program Files\MATLAB\R2012a\toolbox\work\tr01.m', 13)" style="font-weight:bold">tr01</a> (<a href="matlab: opentoline('C:\Program Files\MATLAB\R2012a\toolbox\work\tr01.m',13,0)">line 13</a>)
[ x, fval] = linprog(f',[],[],Beq,beq, lb, [])
} 
tr01

clear all
clc
diary tr01polic.txt
echo on
f = [7 9 8 3 4 6];
Beq = [ 1 0 0 1 0 0; 0 1 0 0 1 0; 0 0 1 0 0 1;
        1 1 1 0 0 0; 0 0 0 1 1 1]; 
lb = zeros(6,1); 
beq = [500; 200; 100; 300; 500];            
[ x, fval] = linprog(f',[],[],Beq,beq, lb, [])
Optimization terminated.

x =

  200.0000
    0.0000
  100.0000
  300.0000
  200.0000
    0.0000


fval =

   3.9000e+03

diary off
f = [7 9 8 3 4 6];
Beq = [ 1 0 0 1 0 0; 0 1 0 0 1 0; 0 0 1 0 0 1;
        1 1 1 0 0 0; 0 0 0 1 1 1]; 
lb = zeros(6,1); 
beq = [500; 200; 100; 300; 500];            
[ x, fval] = linprog(f',[],[],Beq,beq, lb, [])
{Undefined function 'linprog' for input arguments of type 'double'.

Error in <a href="matlab:helpUtils.errorDocCallback('tr01', 'C:\Program Files\MATLAB\R2012a\toolbox\work\tr01.m', 13)" style="font-weight:bold">tr01</a> (<a href="matlab: opentoline('C:\Program Files\MATLAB\R2012a\toolbox\work\tr01.m',13,0)">line 13</a>)
[ x, fval] = linprog(f',[],[],Beq,beq, lb, [])
} 
tr01

clear all
clc
diary tr01polic.txt
echo on
f = [7 9 8 3 4 6];
Beq = [ 1 0 0 1 0 0; 0 1 0 0 1 0; 0 0 1 0 0 1;
        1 1 1 0 0 0; 0 0 0 1 1 1]; 
lb = zeros(6,1); 
beq = [500; 200; 100; 300; 500];            
[ x, fval] = linprog(f',[],[],Beq,beq, lb, [])
{Undefined function 'linprog' for input arguments of type 'double'.

Error in <a href="matlab:helpUtils.errorDocCallback('tr01', 'C:\Program Files\MATLAB\R2012a\toolbox\work\tr01.m', 13)" style="font-weight:bold">tr01</a> (<a href="matlab: opentoline('C:\Program Files\MATLAB\R2012a\toolbox\work\tr01.m',13,0)">line 13</a>)
[ x, fval] = linprog(f',[],[],Beq,beq, lb, [])
} 
dir

.              123.txt        234.txt        lipsol.m       lplab31.m      ml14.bat       tr01polic.txt  
..             125.txt        linprog.m      lplab3.m       lplab5.m       tr01.m         

tr01

clear all
clc
diary tr01polic.txt
echo on
f = [7 9 8 3 4 6];
Beq = [ 1 0 0 1 0 0; 0 1 0 0 1 0; 0 0 1 0 0 1;
        1 1 1 0 0 0; 0 0 0 1 1 1]; 
lb = zeros(6,1); 
beq = [500; 200; 100; 300; 500];            
[ x, fval] = linprog(f',[],[],Beq,beq, lb, [])
{Undefined function 'linprog' for input arguments of type 'double'.

Error in <a href="matlab:helpUtils.errorDocCallback('tr01', 'C:\Program Files\MATLAB\R2012a\toolbox\work\tr01.m', 13)" style="font-weight:bold">tr01</a> (<a href="matlab: opentoline('C:\Program Files\MATLAB\R2012a\toolbox\work\tr01.m',13,0)">line 13</a>)
[ x, fval] = linprog(f',[],[],Beq,beq, lb, [])
} 
dir

.              123.txt        234.txt        lipsol.m       lplab31.m      ml14.bat       tr01polic.txt  
..             125.txt        linprog.m      lplab3.m       lplab5.m       tr01.m         

try open('linprog'); catch edit('linprog'); end
f = [7 9 8 3 4 6];
Beq = [ 1 0 0 1 0 0; 0 1 0 0 1 0; 0 0 1 0 0 1;
        1 1 1 0 0 0; 0 0 0 1 1 1]; 
lb = zeros(6,1); 
beq = [500; 200; 100; 300; 500];            
[ x, fval] = linprog(f',[],[],Beq,beq, lb, [])
{Warning: CHOLINC(X, 'inf') will be removed in a future release.} 
{> In <a href="matlab: opentoline('C:\Program Files\MATLAB\R2012a\toolbox\work\lipsol.m',693,1)">lipsol at 693</a>
  In <a href="matlab: opentoline('C:\Program Files\MATLAB\R2012a\toolbox\work\linprog.m',212,1)">linprog at 212</a>
  In <a href="matlab: opentoline('C:\Program Files\MATLAB\R2012a\toolbox\work\tr01.m',13,1)">tr01 at 13</a>} 
{Warning: CHOLINC(X, 'inf') will be removed in a future release.} 
{> In <a href="matlab: opentoline('C:\Program Files\MATLAB\R2012a\toolbox\work\lipsol.m',1369,1)">lipsol>direction at 1369</a>
  In <a href="matlab: opentoline('C:\Program Files\MATLAB\R2012a\toolbox\work\lipsol.m',872,1)">lipsol at 872</a>
  In <a href="matlab: opentoline('C:\Program Files\MATLAB\R2012a\toolbox\work\linprog.m',212,1)">linprog at 212</a>
  In <a href="matlab: opentoline('C:\Program Files\MATLAB\R2012a\toolbox\work\tr01.m',13,1)">tr01 at 13</a>} 
{Warning: CHOLINC(X, 'inf') will be removed in a future release.} 
{> In <a href="matlab: opentoline('C:\Program Files\MATLAB\R2012a\toolbox\work\lipsol.m',1369,1)">lipsol>direction at 1369</a>
  In <a href="matlab: opentoline('C:\Program Files\MATLAB\R2012a\toolbox\work\lipsol.m',872,1)">lipsol at 872</a>
  In <a href="matlab: opentoline('C:\Program Files\MATLAB\R2012a\toolbox\work\linprog.m',212,1)">linprog at 212</a>
  In <a href="matlab: opentoline('C:\Program Files\MATLAB\R2012a\toolbox\work\tr01.m',13,1)">tr01 at 13</a>} 
{Warning: CHOLINC(X, 'inf') will be removed in a future release.} 
{> In <a href="matlab: opentoline('C:\Program Files\MATLAB\R2012a\toolbox\work\lipsol.m',1369,1)">lipsol>direction at 1369</a>
  In <a href="matlab: opentoline('C:\Program Files\MATLAB\R2012a\toolbox\work\lipsol.m',872,1)">lipsol at 872</a>
  In <a href="matlab: opentoline('C:\Program Files\MATLAB\R2012a\toolbox\work\linprog.m',212,1)">linprog at 212</a>
  In <a href="matlab: opentoline('C:\Program Files\MATLAB\R2012a\toolbox\work\tr01.m',13,1)">tr01 at 13</a>} 
{Warning: CHOLINC(X, 'inf') will be removed in a future release.} 
{> In <a href="matlab: opentoline('C:\Program Files\MATLAB\R2012a\toolbox\work\lipsol.m',1369,1)">lipsol>direction at 1369</a>
  In <a href="matlab: opentoline('C:\Program Files\MATLAB\R2012a\toolbox\work\lipsol.m',872,1)">lipsol at 872</a>
  In <a href="matlab: opentoline('C:\Program Files\MATLAB\R2012a\toolbox\work\linprog.m',212,1)">linprog at 212</a>
  In <a href="matlab: opentoline('C:\Program Files\MATLAB\R2012a\toolbox\work\tr01.m',13,1)">tr01 at 13</a>} 
{Warning: CHOLINC(X, 'inf') will be removed in a future release.} 
{> In <a href="matlab: opentoline('C:\Program Files\MATLAB\R2012a\toolbox\work\lipsol.m',1369,1)">lipsol>direction at 1369</a>
  In <a href="matlab: opentoline('C:\Program Files\MATLAB\R2012a\toolbox\work\lipsol.m',872,1)">lipsol at 872</a>
  In <a href="matlab: opentoline('C:\Program Files\MATLAB\R2012a\toolbox\work\linprog.m',212,1)">linprog at 212</a>
  In <a href="matlab: opentoline('C:\Program Files\MATLAB\R2012a\toolbox\work\tr01.m',13,1)">tr01 at 13</a>} 
Optimization terminated.

x =

  200.0000
    0.0000
  100.0000
  300.0000
  200.0000
    0.0000


fval =

   3.9000e+03

diary off
echo on
f = [7 9 8 3 4 6];
Beq = [ 1 0 0 1 0 0; 0 1 0 0 1 0; 0 0 1 0 0 1;
        1 1 1 0 0 0; 0 0 0 1 1 1]; 
lb = zeros(6,1); 
beq = [500; 200; 100; 300; 500];            
[ x, fval] = linprog(f',[],[],Beq,beq, lb, [])
{Previously accessible file "C:\Program Files\MATLAB\R2012a\toolbox\work\linprog.m" is now inaccessible.

Error in <a href="matlab:helpUtils.errorDocCallback('tr01', 'C:\Program Files\MATLAB\R2012a\toolbox\work\tr01.m', 13)" style="font-weight:bold">tr01</a> (<a href="matlab: opentoline('C:\Program Files\MATLAB\R2012a\toolbox\work\tr01.m',13,0)">line 13</a>)
[ x, fval] = linprog(f',[],[],Beq,beq, lb, [])
} 
tr02

clear all
clc
diary tr01polic.txt
echo on
f = [7 9 8 3 4 6];
Beq = [ 1 0 0 1 0 0; 0 1 0 0 1 0; 0 0 1 0 0 1;
        1 1 1 0 0 0; 0 0 0 1 1 1]; 
lb = zeros(6,1); 
beq = [500; 200; 100; 300; 500];            
[ x, fval] = linprog(f',[],[],Beq,beq, lb, [])
Optimization terminated.

x =

  200.0000
    0.0000
  100.0000
  300.0000
  200.0000
    0.0000


fval =

   3.9000e+03

diary off
f = [7 9 8 3 4 6];
Beq = [ 1 0 0 1 0 0; 0 1 0 0 1 0; 0 0 1 0 0 1;
        1 1 1 0 0 0; 0 0 0 1 1 1]; 
lb = zeros(6,1); 
beq = [500; 200; 100; 300; 500];            
[ x, fval] = linprog(f',[],[],Beq,beq, lb, [])
Optimization terminated.

x =

  200.0000
    0.0000
  100.0000
  300.0000
  200.0000
    0.0000


fval =

   3.9000e+03

diary off
