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 @@
nbCon :

a double, number of constraints.

objCoeff : -

a vector of doubles, represents coefficients of the variables in the objective.

+

a vector of double, represents coefficients of the variables in the objective.

isInt :

a vector of boolean, represents wether a variable is constrained to be an integer.

LB : -

a vector of doubles, represents lower bounds of the variables.

+

a vector of double, represents lower bounds of the variables.

UB : -

a vector of doubles, represents upper bounds of the variables.

+

a vector of double, represents upper bounds of the variables.

conMatrix : -

a matrix of doubles, represents matrix representing the constraint matrix.

+

a matrix of double, represents matrix representing the constraint matrix.

conLB : -

a vector of doubles, represents lower bounds of the constraints.

+

a vector of double, represents lower bounds of the constraints.

conUB : -

a vector of doubles, represents upper bounds of the constraints

+

a vector of double, represents upper bounds of the constraints

objSense :

The sense (maximization/minimization) of the objective. Use 1(sym_minimize ) or -1 (sym_maximize) here.

options :

a a list containing the the parameters to be set.

xopt : -

a vector of doubles, the computed solution of the optimization problem.

+

a vector of double, the computed solution of the optimization problem.

fopt :

a double, the function value at x.

status : @@ -84,7 +84,7 @@ find the minimum or maximum of f(x) such that

Examples

//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