From 29e8e8bbd43892c7fa146c165fdf128f786d6a7b Mon Sep 17 00:00:00 2001 From: Harpreet Date: Mon, 2 Nov 2015 16:20:08 +0530 Subject: README.rst added --- help/en_US/scilab_en_US_help/qpipopt.html | 20 ++++++++++++++------ 1 file changed, 14 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 fba4521..6659f44 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 @@
xopt = qpipopt(nbVar,nbCon,Q,p,LB,UB,conMatrix,conLB,conUB) +xopt = qpipopt(nbVar,nbCon,Q,p,LB,UB,conMatrix,conLB,conUB,x0) +xopt = qpipopt(nbVar,nbCon,Q,p,LB,UB,conMatrix,conLB,conUB,x0,param) [xopt,fopt,exitflag,output,lamda] = qpipopt( ... )
a n x n symmetric matrix of doubles, where n is number of variables, represents coefficients of quadratic in the quadratic problem.
a 1 x n matrix of doubles, where n is number of variables, represents coefficients of linear in the quadratic problem
a n x 1 matrix of doubles, where n is number of variables, represents coefficients of linear in the quadratic problem
a 1 x n matrix of doubles, where n is number of variables, contains lower bounds of the variables.
a n x 1 matrix of doubles, where n is number of variables, contains lower bounds of the variables.
a 1 x n matrix of doubles, where n is number of variables, contains upper bounds of the variables.
a n x 1 matrix of doubles, where n is number of variables, contains upper bounds of the variables.
a m x n matrix of doubles, where n is number of variables and m is number of constraints, contains matrix representing the constraint matrix
a m x 1 matrix of doubles, where m is number of constraints, contains lower bounds of the constraints.
a m x 1 matrix of doubles, where m is number of constraints, contains upper bounds of the constraints.
a m x 1 matrix of doubles, where m is number of constraints, contains initial guess of variables.
a list containing the the parameters to be set.
a 1xn matrix of doubles, the computed solution of the optimization problem.
//Find the value of x that minimize following function
@@ -130,7 +138,7 @@ find the minimum of f(x) such that
|
- qpipopt_mat >> + qpipoptmat >> |