diff options
Diffstat (limited to 'tests/general_tests/fminbnd/fminbnd_logical6.sce')
-rw-r--r-- | tests/general_tests/fminbnd/fminbnd_logical6.sce | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/tests/general_tests/fminbnd/fminbnd_logical6.sce b/tests/general_tests/fminbnd/fminbnd_logical6.sce new file mode 100644 index 0000000..d030a86 --- /dev/null +++ b/tests/general_tests/fminbnd/fminbnd_logical6.sce @@ -0,0 +1,31 @@ + +function y = fun(x) + y = 1/(x*x); +endfunction +x1 = [-10]; +x2 = [0]; + +//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) + |