blob: 26877331568a6c1af19485995db17de6924f6fcc (
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
32
33
|
function y = fun(x)
y = -1/x;
endfunction
x1 = [0];
x2 = [1.5];
//Output
//
//Stop at Tiny Step
// lambda =
//
// lower: 1.235D+14
// upper: 0.0000061
// output =
//
// Iterations: 1.663D+09
// Cpu_Time: 0.112
// Objective_Evaluation: 34
// Dual_Infeasibility: 1747.2543
// Message: "Stop at Tiny Step"
// exitflag =
//
// 3
// fopt =
//
// - 11111111.
// xopt =
//
// 1.000D-07
[xopt,fopt,exitflag,output,lambda] = fminbnd (fun, x1, x2)
|