summaryrefslogtreecommitdiff
path: root/tests/general_tests/fminbnd/fminbnd_logical5.sce
blob: 0e9f67055b41d24e0ce896d3ac2c850ea4968031 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
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)