From 6e9ee19cd67b0b85b7708efa4847c7ebb6d79f24 Mon Sep 17 00:00:00 2001 From: Harpreet Date: Tue, 22 Dec 2015 15:54:28 +0530 Subject: Bugs fixed 3 --- help/en_US/scilab_en_US_help/symphony.html | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'help/en_US/scilab_en_US_help/symphony.html') diff --git a/help/en_US/scilab_en_US_help/symphony.html b/help/en_US/scilab_en_US_help/symphony.html index 9b2bebe..96be830 100644 --- a/help/en_US/scilab_en_US_help/symphony.html +++ b/help/en_US/scilab_en_US_help/symphony.html @@ -48,25 +48,25 @@
a double, number of constraints.
a vector of doubles, represents coefficients of the variables in the objective.
a vector of double, represents coefficients of the variables in the objective.
a vector of boolean, represents wether a variable is constrained to be an integer.
a vector of doubles, represents lower bounds of the variables.
a vector of double, represents lower bounds of the variables.
a vector of doubles, represents upper bounds of the variables.
a vector of double, represents upper bounds of the variables.
a matrix of doubles, represents matrix representing the constraint matrix.
a matrix of double, represents matrix representing the constraint matrix.
a vector of doubles, represents lower bounds of the constraints.
a vector of double, represents lower bounds of the constraints.
a vector of doubles, represents upper bounds of the constraints
a vector of double, represents upper bounds of the constraints
The sense (maximization/minimization) of the objective. Use 1(sym_minimize ) or -1 (sym_maximize) here.
a a list containing the the parameters to be set.
a vector of doubles, the computed solution of the optimization problem.
a vector of double, the computed solution of the optimization problem.
a double, the function value at x.
//A basic case : // Objective function -c = [350*5,330*3,310*4,280*6,500,450,400,100]'; +objCoef = [350*5,330*3,310*4,280*6,500,450,400,100]'; // Lower Bound of variable lb = repmat(0,8,1); // Upper Bound of variables -- cgit |