diff options
Diffstat (limited to 'tests/general_tests/fminunc/fminunc_logical4.sce')
-rw-r--r-- | tests/general_tests/fminunc/fminunc_logical4.sce | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/tests/general_tests/fminunc/fminunc_logical4.sce b/tests/general_tests/fminunc/fminunc_logical4.sce new file mode 100644 index 0000000..60d75c5 --- /dev/null +++ b/tests/general_tests/fminunc/fminunc_logical4.sce @@ -0,0 +1,42 @@ +//Find x in R^2 such that: +// An Example which results in exceeding Maximum CPU-Time + +function y = fun(x) + y = (x(1)-x(2))^2 + x(1); +endfunction +x0 = [1,2]; +options=list("MaxIter", [1000], "CpuTime", [1.5], "Gradient", "OFF", "Hessian", "OFF"); + +//Output +// +//Maximum CPU Time exceeded. Output may not be optimal. +// hessian = +// +// 2. - 2. +// - 2. 2. +// gradient = +// +// 0.9998408 0. +// output = +// +// Iterations: 732 +// Cpu_Time: 1.504 +// Objective_Evaluation: 733 +// Dual_Infeasibility: 0.9998408 +// Message: "Maximum CPU Time exceeded. Output may not be optimal" +// exitflag = +// +// 2 +// fopt = +// +// 0. +// xopt = +// +// 10^17 * +// +// - 7.6897384 +// - 7.6897384 + + +[xopt,fopt,exitflag,output,gradient,hessian] = fminunc (fun, x0, options) + |