diff options
author | Harpreet | 2016-01-29 16:38:03 +0530 |
---|---|---|
committer | Harpreet | 2016-01-29 16:38:03 +0530 |
commit | f7c5cbc61d5b52c749824298cfa39a95db2d879c (patch) | |
tree | 27aafcca0159b7b3bb2926ff3a9c6c25834980d2 /demos/fminbnd.dem.sce | |
parent | 2db803c34c6df02379ec88df3a7aa186700d9fbf (diff) | |
download | symphony-f7c5cbc61d5b52c749824298cfa39a95db2d879c.tar.gz symphony-f7c5cbc61d5b52c749824298cfa39a95db2d879c.tar.bz2 symphony-f7c5cbc61d5b52c749824298cfa39a95db2d879c.zip |
linprog general tests added
Diffstat (limited to 'demos/fminbnd.dem.sce')
-rw-r--r-- | demos/fminbnd.dem.sce | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/demos/fminbnd.dem.sce b/demos/fminbnd.dem.sce index a9b4865..7d83057 100644 --- a/demos/fminbnd.dem.sce +++ b/demos/fminbnd.dem.sce @@ -20,6 +20,7 @@ x2 = [2, 2, 2, 2, 2, 2]; options=list("MaxIter",[1500],"CpuTime", [100],"TolX",[1e-6]) //Calling Ipopt [x,fval] =fminbnd(f, x1, x2, options) +// Press ENTER to continue halt() // Press return to continue //Find x in R such that it minimizes: @@ -34,6 +35,7 @@ x1 = [0]; x2 = [1000]; //Calling Ipopt [x,fval,exitflag,output,lambda] =fminbnd(f, x1, x2) +// Press ENTER to continue halt() // Press return to continue //The below problem is an unbounded problem: |