File: linprog.sci

package info (click to toggle)
scilab 2.4-1
  • links: PTS
  • area: non-free
  • in suites: potato, slink
  • size: 55,196 kB
  • ctags: 38,019
  • sloc: ansic: 231,970; fortran: 148,976; tcl: 7,099; makefile: 4,585; sh: 2,978; csh: 154; cpp: 101; asm: 39; sed: 5
file content (23 lines) | stat: -rw-r--r-- 672 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
 function [x,cout]=linprog(A,b,C,d,c,x0)
// Copyright INRIA
// Generated by lmitool on Thu Feb 02 16:32:14 MET 1995
 Mbound = 1e3;
 abstol = 1e-10;
 nu = 10;
 maxiters = 100;
 reltol = 1.e-10;
 options=[Mbound,abstol,nu,maxiters,reltol];
 /////////////////DO NOT REMOVE THIS LINE
 x_init=x0;
 [nx,nx]=size(A);
 /////////////////DO NOT REMOVE THIS LINE
 XLIST0=list(x_init)
 [XLIST,cout]=lmisolver(XLIST0,linprog_eval,options)
 [x]=XLIST(:)
 /////////////////EVALUATION FUNCTION////////////////////////////
 function [LME,LMI,OBJ]=linprog_eval(XLIST)
 [x]=XLIST(:)
 /////////////////DO NOT REMOVE THIS LINE
 LME=C*x+d
 LMI=vec2list(A*x+b,[ones(nx,1),ones(nx,1)])
 OBJ=c'*x