summaryrefslogtreecommitdiff
path: root/tests/general_tests/fminbnd/fminbnd_logical10.sce
diff options
context:
space:
mode:
Diffstat (limited to 'tests/general_tests/fminbnd/fminbnd_logical10.sce')
-rw-r--r--tests/general_tests/fminbnd/fminbnd_logical10.sce30
1 files changed, 30 insertions, 0 deletions
diff --git a/tests/general_tests/fminbnd/fminbnd_logical10.sce b/tests/general_tests/fminbnd/fminbnd_logical10.sce
new file mode 100644
index 0000000..d36072a
--- /dev/null
+++ b/tests/general_tests/fminbnd/fminbnd_logical10.sce
@@ -0,0 +1,30 @@
+
+function y = fun(x)
+ y = -1/(1-x*x);
+endfunction
+x1 = [0];
+x2 = [1000];
+
+//Output
+//
+//Error in step computation (regularization becomes too large?)!
+// lambda =
+//
+// lower: [0x0 constant]
+// upper: [0x0 constant]
+// output =
+//
+// Iterations: 108
+// Cpu_Time: 0.064
+// Message: "Error in step computation (regularization becomes too large?)!"
+// exitflag =
+//
+// 10
+// fopt =
+//
+// []
+// xopt =
+//
+// []
+[xopt,fopt,exitflag,output,lambda] = fminbnd (fun, x1, x2)
+