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_logical5.sce | 31 ++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 tests/general_tests/fminbnd/fminbnd_logical5.sce (limited to 'tests/general_tests/fminbnd/fminbnd_logical5.sce') diff --git a/tests/general_tests/fminbnd/fminbnd_logical5.sce b/tests/general_tests/fminbnd/fminbnd_logical5.sce new file mode 100644 index 0000000..0e9f670 --- /dev/null +++ b/tests/general_tests/fminbnd/fminbnd_logical5.sce @@ -0,0 +1,31 @@ + +function y = fun(x) + y = -1/(x*x); +endfunction +x1 = [0]; +x2 = [1.5]; + +//Output +// +//Error in step computation (regularization becomes too large?)! +// lambda = +// +// lower: [0x0 constant] +// upper: [0x0 constant] +// output = +// +// Iterations: 108 +// Cpu_Time: 0.06 +// Message: "Error in step computation (regularization becomes too large?)!" +// exitflag = +// +// 10 +// fopt = +// +// [] +// xopt = +// +// [] + +[xopt,fopt,exitflag,output,lambda] = fminbnd (fun, x1, x2) + -- cgit