blob: 69c6960b6f4ce50401d96cc1c1f0a2e3449892c6 (
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 = [-10];
x2 = [0];
//Output
//
//Optimal Solution Found.
// lambda =
//
// lower: 0.0000013
// upper: 1.235D+14
// output =
//
// Iterations: 18
// Cpu_Time: 0.096
// Objective_Evaluation: 19
// Dual_Infeasibility: 0.0232831
// Message: "Optimal Solution Found"
// exitflag =
//
// 0
// fopt =
//
// - 11111339.
// xopt =
//
// - 1.000D-07
[xopt,fopt,exitflag,output,lambda] = fminbnd (fun, x1, x2)
|