From 79583a44468943fad22ba1de2dd25dd86f7be167 Mon Sep 17 00:00:00 2001 From: Harpreet Date: Tue, 22 Dec 2015 14:51:05 +0530 Subject: Bugs by prof fixed 2 --- help/en_US/scilab_en_US_help/qpipopt.html | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) (limited to 'help/en_US/scilab_en_US_help/qpipopt.html') diff --git a/help/en_US/scilab_en_US_help/qpipopt.html b/help/en_US/scilab_en_US_help/qpipopt.html index 7588c1d..7cc0560 100644 --- a/help/en_US/scilab_en_US_help/qpipopt.html +++ b/help/en_US/scilab_en_US_help/qpipopt.html @@ -20,7 +20,7 @@ - qpipopt_mat >> + qpipoptmat >> @@ -72,15 +72,15 @@
exitflag :

Integer identifying the reason the algorithm terminated.

output : -

Structure containing information about the optimization.

+

Structure containing information about the optimization. Right now it contains number of iteration.

lambda : -

Structure containing the Lagrange multipliers at the solution x (separated by constraint type).

+

Structure containing the Lagrange multipliers at the solution x (separated by constraint type).It contains lower, upper and linear equality, inequality constraints.

Description

Search the minimum of a constrained linear quadratic optimization problem specified by : find the minimum of f(x) such that

-

We are calling IPOpt for solving the quadratic problem, IPOpt is a library written in C++. The code has been written by ​Andreas Wächter and ​Carl Laird.

+

We are calling IPOpt for solving the quadratic problem, IPOpt is a library written in C++.

Examples

@@ -100,7 +100,8 @@ find the minimum of f(x) such that

nbCon = 5; x0 = repmat(0,nbVar,1); param = list("MaxIter", 300, "CpuTime", 100); -[xopt,fopt,exitflag,output,lambda]=qpipopt(nbVar,nbCon,Q,p,lb,ub,conMatrix,conLB,conUB,x0,param)
+[xopt,fopt,exitflag,output,lambda]=qpipopt(nbVar,nbCon,Q,p,lb,ub,conMatrix,conLB,conUB,x0,param) +// Press ENTER to continue

Examples

//Find the value of x that minimize following function
@@ -138,7 +139,7 @@ find the minimum of f(x) such that

- qpipopt_mat >> + qpipoptmat >>
-- cgit