From 89b96cb79cbe75ba8c1afea61b3caca37a083f62 Mon Sep 17 00:00:00 2001 From: harpreet Date: Fri, 1 Jul 2016 00:11:55 +0530 Subject: Windows Included --- help/en_US/Symphony Native Function/CHAPTER~ | 1 - help/en_US/fminbnd.xml | 1 + help/en_US/fmincon.xml | 2 + help/en_US/fminimax.xml | 10 +- help/en_US/fminunc.xml | 1 + help/en_US/linprog.xml | 0 help/en_US/scilab_en_US_help/JavaHelpSearch/DOCS | Bin 6895 -> 7632 bytes .../scilab_en_US_help/JavaHelpSearch/DOCS.TAB | Bin 950 -> 984 bytes .../en_US/scilab_en_US_help/JavaHelpSearch/OFFSETS | Bin 254 -> 278 bytes .../scilab_en_US_help/JavaHelpSearch/POSITIONS | Bin 37705 -> 44194 bytes help/en_US/scilab_en_US_help/JavaHelpSearch/SCHEMA | 2 +- help/en_US/scilab_en_US_help/JavaHelpSearch/TMAP | Bin 18432 -> 18432 bytes help/en_US/scilab_en_US_help/fminbnd.html | 3 +- help/en_US/scilab_en_US_help/fmincon.html | 6 +- help/en_US/scilab_en_US_help/fminimax.html | 10 +- help/en_US/scilab_en_US_help/fminunc.html | 3 +- .../section_24af5d179784a48827745fa0aa9df4dd.html | 358 +++++++++++++++++++++ .../section_43d915e486cd1a7dde8c0c09d6ab177e.html | 285 ++++++++++++++++ .../section_4fff750f952bf1f67f4b2a1869ada898.html | 358 +++++++++++++++++++++ .../section_5e696f2d03a3604c545d1892ce44a062.html | 285 ++++++++++++++++ .../section_acc9053f8b9eb28fc8444868aeb726ed.html | 285 ++++++++++++++++ .../section_f892b70a029847ba39043aa5f758cc43.html | 358 +++++++++++++++++++++ help/en_US/scilab_en_US_help/symphony.html | 2 +- help/en_US/scilab_en_US_help/symphonymat.html | 2 +- help/en_US/symphony.xml | 2 +- help/en_US/symphonymat.xml | 2 +- 26 files changed, 1956 insertions(+), 20 deletions(-) delete mode 100644 help/en_US/Symphony Native Function/CHAPTER~ mode change 100755 => 100644 help/en_US/linprog.xml create mode 100644 help/en_US/scilab_en_US_help/section_24af5d179784a48827745fa0aa9df4dd.html create mode 100644 help/en_US/scilab_en_US_help/section_43d915e486cd1a7dde8c0c09d6ab177e.html create mode 100644 help/en_US/scilab_en_US_help/section_4fff750f952bf1f67f4b2a1869ada898.html create mode 100644 help/en_US/scilab_en_US_help/section_5e696f2d03a3604c545d1892ce44a062.html create mode 100644 help/en_US/scilab_en_US_help/section_acc9053f8b9eb28fc8444868aeb726ed.html create mode 100644 help/en_US/scilab_en_US_help/section_f892b70a029847ba39043aa5f758cc43.html (limited to 'help') diff --git a/help/en_US/Symphony Native Function/CHAPTER~ b/help/en_US/Symphony Native Function/CHAPTER~ deleted file mode 100644 index a0a7f5d..0000000 --- a/help/en_US/Symphony Native Function/CHAPTER~ +++ /dev/null @@ -1 +0,0 @@ -title = API Functions diff --git a/help/en_US/fminbnd.xml b/help/en_US/fminbnd.xml index 54f5abb..99d21ea 100644 --- a/help/en_US/fminbnd.xml +++ b/help/en_US/fminbnd.xml @@ -109,6 +109,7 @@ It has type "struct" and contains the following fields. output.Cpu_Time: The total cpu-time spend during the search output.Objective_Evaluation: The number of Objective Evaluations performed during the search output.Dual_Infeasibility: The Dual Infeasiblity of the final soution +output.Message: The output message for the problem diff --git a/help/en_US/fmincon.xml b/help/en_US/fmincon.xml index c4a70a7..a6bef9f 100644 --- a/help/en_US/fmincon.xml +++ b/help/en_US/fmincon.xml @@ -136,6 +136,7 @@ It has type "struct" and contains the following fields. output.Cpu_Time: The total cpu-time spend during the search output.Objective_Evaluation: The number of Objective Evaluations performed during the search output.Dual_Infeasibility: The Dual Infeasiblity of the final soution +output.Message: The output message for the problem @@ -325,6 +326,7 @@ endfunction options=list("MaxIter", [1500], "CpuTime", [500], "GradObj", fGrad, "Hessian", lHess,"GradCon", cGrad); //Calling Ipopt [x,fval,exitflag,output,lambda,grad,hessian] =fmincon(f, x0,A,b,Aeq,beq,lb,ub,nlc,options) +// Press ENTER to continue ]]> diff --git a/help/en_US/fminimax.xml b/help/en_US/fminimax.xml index e733a3d..efe4812 100644 --- a/help/en_US/fminimax.xml +++ b/help/en_US/fminimax.xml @@ -30,11 +30,11 @@ xopt = fminimax(fun,x0,A,b,Aeq,beq,lb,ub) xopt = fminimax(fun,x0,A,b,Aeq,beq,lb,ub,nonlinfun) xopt = fminimax(fun,x0,A,b,Aeq,beq,lb,ub,nonlinfun,options) - [xopt, fval] = fminimax(.....) - [xopt, fval, maxfval]= fminimax(.....) - [xopt, fval, maxfval, exitflag]= fminimax(.....) - [xopt, fval, maxfval, exitflag, output]= fminimax(.....) - [xopt, fval, maxfval, exitflag, output, lambda]= fminimax(.....) + [xopt, fval] = fmincon(.....) + [xopt, fval, maxfval]= fmincon(.....) + [xopt, fval, maxfval, exitflag]= fmincon(.....) + [xopt, fval, maxfval, exitflag, output]= fmincon(.....) + [xopt, fval, maxfval, exitflag, output, lambda]= fmincon(.....) diff --git a/help/en_US/fminunc.xml b/help/en_US/fminunc.xml index fe12831..e5a46c3 100644 --- a/help/en_US/fminunc.xml +++ b/help/en_US/fminunc.xml @@ -110,6 +110,7 @@ It has type "struct" and contains the following fields. output.Cpu_Time: The total cpu-time spend during the search output.Objective_Evaluation: The number of Objective Evaluations performed during the search output.Dual_Infeasibility: The Dual Infeasiblity of the final soution +output.Message: The output message for the problem diff --git a/help/en_US/linprog.xml b/help/en_US/linprog.xml old mode 100755 new mode 100644 diff --git a/help/en_US/scilab_en_US_help/JavaHelpSearch/DOCS b/help/en_US/scilab_en_US_help/JavaHelpSearch/DOCS index e29698f..236a815 100644 Binary files a/help/en_US/scilab_en_US_help/JavaHelpSearch/DOCS and b/help/en_US/scilab_en_US_help/JavaHelpSearch/DOCS differ diff --git a/help/en_US/scilab_en_US_help/JavaHelpSearch/DOCS.TAB b/help/en_US/scilab_en_US_help/JavaHelpSearch/DOCS.TAB index 0d7319d..2133bb0 100644 Binary files a/help/en_US/scilab_en_US_help/JavaHelpSearch/DOCS.TAB and b/help/en_US/scilab_en_US_help/JavaHelpSearch/DOCS.TAB differ diff --git a/help/en_US/scilab_en_US_help/JavaHelpSearch/OFFSETS b/help/en_US/scilab_en_US_help/JavaHelpSearch/OFFSETS index 3bc2a52..8728452 100644 Binary files a/help/en_US/scilab_en_US_help/JavaHelpSearch/OFFSETS and b/help/en_US/scilab_en_US_help/JavaHelpSearch/OFFSETS differ diff --git a/help/en_US/scilab_en_US_help/JavaHelpSearch/POSITIONS b/help/en_US/scilab_en_US_help/JavaHelpSearch/POSITIONS index 5b008c5..bfc07ce 100644 Binary files a/help/en_US/scilab_en_US_help/JavaHelpSearch/POSITIONS and b/help/en_US/scilab_en_US_help/JavaHelpSearch/POSITIONS differ diff --git a/help/en_US/scilab_en_US_help/JavaHelpSearch/SCHEMA b/help/en_US/scilab_en_US_help/JavaHelpSearch/SCHEMA index 00ccabf..d34e905 100644 --- a/help/en_US/scilab_en_US_help/JavaHelpSearch/SCHEMA +++ b/help/en_US/scilab_en_US_help/JavaHelpSearch/SCHEMA @@ -1,2 +1,2 @@ JavaSearch 1.0 -TMAP bs=2048 rt=1 fl=-1 id1=1516 id2=1 +TMAP bs=2048 rt=1 fl=-1 id1=1523 id2=1 diff --git a/help/en_US/scilab_en_US_help/JavaHelpSearch/TMAP b/help/en_US/scilab_en_US_help/JavaHelpSearch/TMAP index 6b36ea7..882bad7 100644 Binary files a/help/en_US/scilab_en_US_help/JavaHelpSearch/TMAP and b/help/en_US/scilab_en_US_help/JavaHelpSearch/TMAP differ diff --git a/help/en_US/scilab_en_US_help/fminbnd.html b/help/en_US/scilab_en_US_help/fminbnd.html index 46755f8..4ac4a98 100644 --- a/help/en_US/scilab_en_US_help/fminbnd.html +++ b/help/en_US/scilab_en_US_help/fminbnd.html @@ -89,7 +89,8 @@ It has type "struct" and contains the following fields.

+
  • output.Dual_Infeasibility: The Dual Infeasiblity of the final soution
  • +
  • output.Message: The output message for the problem
  • The lambda data structure contains the Lagrange multipliers at the end of optimization. In the current version the values are returned only when the the solution is optimal. It has type "struct" and contains the following fields. diff --git a/help/en_US/scilab_en_US_help/fmincon.html b/help/en_US/scilab_en_US_help/fmincon.html index ea3077f..5d4a558 100644 --- a/help/en_US/scilab_en_US_help/fmincon.html +++ b/help/en_US/scilab_en_US_help/fmincon.html @@ -112,7 +112,8 @@ It has type "struct" and contains the following fields.

    +
  • output.Dual_Infeasibility: The Dual Infeasiblity of the final soution
  • +
  • output.Message: The output message for the problem
  • The lambda data structure contains the Lagrange multipliers at the end of optimization. In the current version the values are returned only when the the solution is optimal. It has type "struct" and contains the following fields. @@ -276,7 +277,8 @@ It has type "struct" and contains the following fields. //Options options=list("MaxIter", [1500], "CpuTime", [500], "GradObj", fGrad, "Hessian", lHess,"GradCon", cGrad); //Calling Ipopt -[x,fval,exitflag,output,lambda,grad,hessian] =fmincon(f, x0,A,b,Aeq,beq,lb,ub,nlc,options) +[x,fval,exitflag,output,lambda,grad,hessian] =fmincon(f, x0,A,b,Aeq,beq,lb,ub,nlc,options) +// Press ENTER to continue

    Authors

    diff --git a/help/en_US/scilab_en_US_help/fminimax.html b/help/en_US/scilab_en_US_help/fminimax.html index 4143821..a701aa7 100644 --- a/help/en_US/scilab_en_US_help/fminimax.html +++ b/help/en_US/scilab_en_US_help/fminimax.html @@ -43,11 +43,11 @@ xopt = fminimax(fun,x0,A,b,Aeq,beq,lb,ub) xopt = fminimax(fun,x0,A,b,Aeq,beq,lb,ub,nonlinfun) xopt = fminimax(fun,x0,A,b,Aeq,beq,lb,ub,nonlinfun,options) -[xopt, fval] = fminimax(.....) -[xopt, fval, maxfval]= fminimax(.....) -[xopt, fval, maxfval, exitflag]= fminimax(.....) -[xopt, fval, maxfval, exitflag, output]= fminimax(.....) -[xopt, fval, maxfval, exitflag, output, lambda]= fminimax(.....) +[xopt, fval] = fmincon(.....) +[xopt, fval, maxfval]= fmincon(.....) +[xopt, fval, maxfval, exitflag]= fmincon(.....) +[xopt, fval, maxfval, exitflag, output]= fmincon(.....) +[xopt, fval, maxfval, exitflag, output, lambda]= fmincon(.....)

    Parameters

    fun: diff --git a/help/en_US/scilab_en_US_help/fminunc.html b/help/en_US/scilab_en_US_help/fminunc.html index 636ea68..e6ec051 100644 --- a/help/en_US/scilab_en_US_help/fminunc.html +++ b/help/en_US/scilab_en_US_help/fminunc.html @@ -91,7 +91,8 @@ It has type "struct" and contains the following fields.
    • output.Iterations: The number of iterations performed during the search
    • output.Cpu_Time: The total cpu-time spend during the search
    • output.Objective_Evaluation: The number of Objective Evaluations performed during the search
    • -
    • output.Dual_Infeasibility: The Dual Infeasiblity of the final soution

    +
  • output.Dual_Infeasibility: The Dual Infeasiblity of the final soution
  • +
  • output.Message: The output message for the problem
  • Examples

    diff --git a/help/en_US/scilab_en_US_help/section_24af5d179784a48827745fa0aa9df4dd.html b/help/en_US/scilab_en_US_help/section_24af5d179784a48827745fa0aa9df4dd.html new file mode 100644 index 0000000..7fd89ea --- /dev/null +++ b/help/en_US/scilab_en_US_help/section_24af5d179784a48827745fa0aa9df4dd.html @@ -0,0 +1,358 @@ + + + + + + +
    + + + + +
    + + + FOSSEE Optimization Toolbox + + + +
    +
    +
    + + + + FOSSEE Optimization Toolbox >> FOSSEE Optimization Toolbox + +

    +

    FOSSEE Optimization Toolbox

    + +
    + +
    + + + + + + +
    Report an issue
    + + + FOSSEE Optimization Toolbox + + + +
    +
    +
    + + diff --git a/help/en_US/scilab_en_US_help/section_43d915e486cd1a7dde8c0c09d6ab177e.html b/help/en_US/scilab_en_US_help/section_43d915e486cd1a7dde8c0c09d6ab177e.html new file mode 100644 index 0000000..5ba90ab --- /dev/null +++ b/help/en_US/scilab_en_US_help/section_43d915e486cd1a7dde8c0c09d6ab177e.html @@ -0,0 +1,285 @@ + + + + + + +
    + + + + +
    + << symphonymat + + + FOSSEE Optimization Toolbox + + + +
    +
    +
    + + + + FOSSEE Optimization Toolbox >> FOSSEE Optimization Toolbox > Symphony Native Functions + +

    +

    Symphony Native Functions

    + +
    + +
    + + + + + + +
    Report an issue
    + << symphonymat + + + FOSSEE Optimization Toolbox + + + +
    +
    +
    + + diff --git a/help/en_US/scilab_en_US_help/section_4fff750f952bf1f67f4b2a1869ada898.html b/help/en_US/scilab_en_US_help/section_4fff750f952bf1f67f4b2a1869ada898.html new file mode 100644 index 0000000..8384736 --- /dev/null +++ b/help/en_US/scilab_en_US_help/section_4fff750f952bf1f67f4b2a1869ada898.html @@ -0,0 +1,358 @@ + + + + + + +
    + + + + +
    + + + FOSSEE Optimization Toolbox + + + +
    +
    +
    + + + + FOSSEE Optimization Toolbox >> FOSSEE Optimization Toolbox + +

    +

    FOSSEE Optimization Toolbox

    + +
    + +
    + + + + + + +
    Report an issue
    + + + FOSSEE Optimization Toolbox + + + +
    +
    +
    + + diff --git a/help/en_US/scilab_en_US_help/section_5e696f2d03a3604c545d1892ce44a062.html b/help/en_US/scilab_en_US_help/section_5e696f2d03a3604c545d1892ce44a062.html new file mode 100644 index 0000000..2d33b2d --- /dev/null +++ b/help/en_US/scilab_en_US_help/section_5e696f2d03a3604c545d1892ce44a062.html @@ -0,0 +1,285 @@ + + + + + + +
    + + + + +
    + << symphonymat + + + FOSSEE Optimization Toolbox + + + +
    +
    +
    + + + + FOSSEE Optimization Toolbox >> FOSSEE Optimization Toolbox > Symphony Native Functions + +

    +

    Symphony Native Functions

    + +
    + +
    + + + + + + +
    Report an issue
    + << symphonymat + + + FOSSEE Optimization Toolbox + + + +
    +
    +
    + + diff --git a/help/en_US/scilab_en_US_help/section_acc9053f8b9eb28fc8444868aeb726ed.html b/help/en_US/scilab_en_US_help/section_acc9053f8b9eb28fc8444868aeb726ed.html new file mode 100644 index 0000000..85e5dc9 --- /dev/null +++ b/help/en_US/scilab_en_US_help/section_acc9053f8b9eb28fc8444868aeb726ed.html @@ -0,0 +1,285 @@ + + + + + + +
    + + + + +
    + << symphonymat + + + FOSSEE Optimization Toolbox + + + +
    +
    +
    + + + + FOSSEE Optimization Toolbox >> FOSSEE Optimization Toolbox > Symphony Native Functions + +

    +

    Symphony Native Functions

    + +
    + +
    + + + + + + +
    Report an issue
    + << symphonymat + + + FOSSEE Optimization Toolbox + + + +
    +
    +
    + + diff --git a/help/en_US/scilab_en_US_help/section_f892b70a029847ba39043aa5f758cc43.html b/help/en_US/scilab_en_US_help/section_f892b70a029847ba39043aa5f758cc43.html new file mode 100644 index 0000000..17278da --- /dev/null +++ b/help/en_US/scilab_en_US_help/section_f892b70a029847ba39043aa5f758cc43.html @@ -0,0 +1,358 @@ + + + + + + +
    + + + + +
    + + + FOSSEE Optimization Toolbox + + + +
    +
    +
    + + + + FOSSEE Optimization Toolbox >> FOSSEE Optimization Toolbox + +

    +

    FOSSEE Optimization Toolbox

    + +
    + +
    + + + + + + +
    Report an issue
    + + + FOSSEE Optimization Toolbox + + + +
    +
    +
    + + diff --git a/help/en_US/scilab_en_US_help/symphony.html b/help/en_US/scilab_en_US_help/symphony.html index a27f8e8..8b87039 100644 --- a/help/en_US/scilab_en_US_help/symphony.html +++ b/help/en_US/scilab_en_US_help/symphony.html @@ -193,7 +193,7 @@ It has type "struct" and contains the following fields. 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 1 0 0 1 0 .. 0 1 0 1 0 0 1 0 0 1 0 1 0 0 0 0 0 1 1 0 0 0 0 0 1 1 0 0 1 0 0 1 0] // Optimal value -fopt = [ 24381 ] +fopt = [ -24381 ] // Calling Symphony [x,f,status,output] = symphony(nbVar,nbCon,c,isInt,lb,ub,A,conLB,conUB,-1,options);
    diff --git a/help/en_US/scilab_en_US_help/symphonymat.html b/help/en_US/scilab_en_US_help/symphonymat.html index 75edb56..b11afc6 100644 --- a/help/en_US/scilab_en_US_help/symphonymat.html +++ b/help/en_US/scilab_en_US_help/symphonymat.html @@ -182,7 +182,7 @@ It has type "struct" and contains the following fields. 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 1 .. 0 0 1 0 0 1 0 1 0 0 1 0 0 1 0 1 0 0 0 0 0 1 1 0 0 0 0 0 1 1 0 0 1 0 0 1 0] // Optimal value -fopt = [ 24381 ] +fopt = [ -24381 ] // Calling Symphony [x,f,status,output] = symphonymat(c,intcon,A,b,[],[],lb,ub,options); diff --git a/help/en_US/symphony.xml b/help/en_US/symphony.xml index d11fafc..692d4ad 100644 --- a/help/en_US/symphony.xml +++ b/help/en_US/symphony.xml @@ -221,7 +221,7 @@ xopt = [0 1 1 0 0 1 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 1 0 1 1 0 1 .. 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 1 0 0 1 0 .. 0 1 0 1 0 0 1 0 0 1 0 1 0 0 0 0 0 1 1 0 0 0 0 0 1 1 0 0 1 0 0 1 0] // Optimal value -fopt = [ 24381 ] +fopt = [ -24381 ] // Calling Symphony [x,f,status,output] = symphony(nbVar,nbCon,c,isInt,lb,ub,A,conLB,conUB,-1,options); ]]> diff --git a/help/en_US/symphonymat.xml b/help/en_US/symphonymat.xml index 32059cb..e99d223 100644 --- a/help/en_US/symphonymat.xml +++ b/help/en_US/symphonymat.xml @@ -211,7 +211,7 @@ xopt = [0 1 1 0 0 1 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 1 1 0 1 1 0 1 .. 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 1 1 .. 0 0 1 0 0 1 0 1 0 0 1 0 0 1 0 1 0 0 0 0 0 1 1 0 0 0 0 0 1 1 0 0 1 0 0 1 0] // Optimal value -fopt = [ 24381 ] +fopt = [ -24381 ] // Calling Symphony [x,f,status,output] = symphonymat(c,intcon,A,b,[],[],lb,ub,options); ]]> -- cgit