diff options
author | harpreet | 2016-04-16 12:12:15 +0530 |
---|---|---|
committer | harpreet | 2016-04-16 12:12:15 +0530 |
commit | 10e2e4d8b4a7592a8631ddac8e8d1664d6f0b9e3 (patch) | |
tree | 087af3ca1853d01afef58684b09b537597317023 /tests/general_tests/fminbnd/fminbnd_logical3.sce | |
parent | 8484c85784b84cc3a9257f8d8065b3a8a7800628 (diff) | |
download | FOSSEE-Optimization-toolbox-10e2e4d8b4a7592a8631ddac8e8d1664d6f0b9e3.tar.gz FOSSEE-Optimization-toolbox-10e2e4d8b4a7592a8631ddac8e8d1664d6f0b9e3.tar.bz2 FOSSEE-Optimization-toolbox-10e2e4d8b4a7592a8631ddac8e8d1664d6f0b9e3.zip |
fmincon examples
Diffstat (limited to 'tests/general_tests/fminbnd/fminbnd_logical3.sce')
-rw-r--r-- | tests/general_tests/fminbnd/fminbnd_logical3.sce | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/tests/general_tests/fminbnd/fminbnd_logical3.sce b/tests/general_tests/fminbnd/fminbnd_logical3.sce new file mode 100644 index 0000000..2687733 --- /dev/null +++ b/tests/general_tests/fminbnd/fminbnd_logical3.sce @@ -0,0 +1,33 @@ + +function y = fun(x) + y = -1/x; +endfunction +x1 = [0]; +x2 = [1.5]; + +//Output +// +//Stop at Tiny Step +// lambda = +// +// lower: 1.235D+14 +// upper: 0.0000061 +// output = +// +// Iterations: 1.663D+09 +// Cpu_Time: 0.112 +// Objective_Evaluation: 34 +// Dual_Infeasibility: 1747.2543 +// Message: "Stop at Tiny Step" +// exitflag = +// +// 3 +// fopt = +// +// - 11111111. +// xopt = +// +// 1.000D-07 + +[xopt,fopt,exitflag,output,lambda] = fminbnd (fun, x1, x2) + |