From f7c5cbc61d5b52c749824298cfa39a95db2d879c Mon Sep 17 00:00:00 2001 From: Harpreet Date: Fri, 29 Jan 2016 16:38:03 +0530 Subject: linprog general tests added --- help/en_US/scilab_en_US_help/linprog.html | 27 +++++++++++++++------------ 1 file changed, 15 insertions(+), 12 deletions(-) (limited to 'help/en_US/scilab_en_US_help/linprog.html') diff --git a/help/en_US/scilab_en_US_help/linprog.html b/help/en_US/scilab_en_US_help/linprog.html index 260b8b3..c47e448 100644 --- a/help/en_US/scilab_en_US_help/linprog.html +++ b/help/en_US/scilab_en_US_help/linprog.html @@ -16,7 +16,7 @@ - Symphony Toolbox + FOSSEE Optimization Toolbox @@ -29,7 +29,7 @@ - Symphony Toolbox >> Symphony Toolbox > linprog + FOSSEE Optimization Toolbox >> FOSSEE Optimization Toolbox > linprog

linprog

@@ -41,7 +41,8 @@ xopt = linprog(c,A,b,Aeq,beq) xopt = linprog(c,A,b,Aeq,beq,lb,ub) xopt = linprog(c,A,b,Aeq,beq,lb,ub,param) -[xopt, fopt, exitflag, output, lambda] = linprog(file) +xopt = linprog(file) +xopt = linprog(file,param) [xopt,fopt,exitflag,output,lambda] = linprog( ... )

Parameters

@@ -77,9 +78,14 @@

Description

OSI-CLP is used for solving the linear programming problems, OSI-CLP is a library written in C++. Search the minimum of a constrained linear programming problem specified by :

-

-The routine calls Clp for solving the linear programming problem, Clp is a library written in C++.

-

The exitflag allows to know the status of the optimization which is given back by Ipopt. +

+

The routine calls Clp for solving the linear programming problem, Clp is a library written in C++.

+

The options allows the user to set various parameters of the Optimization problem. +It should be defined as type "list" and contains the following fields. In the current version it only contains maxiter. +

+

The exitflag allows to know the status of the optimization which is given back by CLP.

-

For more details on exitflag see the ipopt documentation, go to http://www.coin-or.org/Ipopt/documentation/

The output data structure contains detailed informations about the optimization process. It has type "struct" and contains the following fields.

@@ -159,7 +162,7 @@ It has type "struct" and contains the following fields.

Examples

filepath = get_absolute_file_path('linprog.dem.sce');
 filepath = filepath + "exmip1.mps"
-[xopt,fopt,exitflag,output,lambda] =linprog(filepath);
+[xopt,fopt,exitflag,output,lambda] =linprog(filepath)

Authors

@@ -174,7 +177,7 @@ It has type "struct" and contains the following fields. - Symphony Toolbox + FOSSEE Optimization Toolbox -- cgit