From 10e2e4d8b4a7592a8631ddac8e8d1664d6f0b9e3 Mon Sep 17 00:00:00 2001 From: harpreet Date: Sat, 16 Apr 2016 12:12:15 +0530 Subject: fmincon examples --- tests/general_tests/fminbnd/fminbnd_logical11.sce | 31 +++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 tests/general_tests/fminbnd/fminbnd_logical11.sce (limited to 'tests/general_tests/fminbnd/fminbnd_logical11.sce') diff --git a/tests/general_tests/fminbnd/fminbnd_logical11.sce b/tests/general_tests/fminbnd/fminbnd_logical11.sce new file mode 100644 index 0000000..0681d30 --- /dev/null +++ b/tests/general_tests/fminbnd/fminbnd_logical11.sce @@ -0,0 +1,31 @@ + +function y = fun(x) + y = -sqrt(x*x); +endfunction +x1 = [-10]; +x2 = [-5]; + +//Output +// +//Optimal Solution Found. +// lambda = +// +// lower: 1.0000018 +// upper: 0.0000018 +// output = +// +// Iterations: 5 +// Cpu_Time: 0.036 +// Objective_Evaluation: 6 +// Dual_Infeasibility: 2.390D-11 +// Message: "Optimal Solution Found" +// exitflag = +// +// 0 +// fopt = +// +// - 9.9999909 +// xopt = +// +// - 9.9999909 +[xopt,fopt,exitflag,output,lambda] = fminbnd (fun, x1, x2) -- cgit