blob: 64debeac461a7da7eacb5d2a35bd9ba2fef146d0 (
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
|
function y = fun(x)
y = -sqrt(x^3);
endfunction
x1 = [-10];
x2 = [-5];
//Output
//
//Optimal Solution Found.
// lambda =
//
// lower: 0.0000036
// upper: 0.0000036
// output =
//
// Iterations: 4
// Cpu_Time: 0.028
// Objective_Evaluation: 5
// Dual_Infeasibility: 0
// Message: "Optimal Solution Found"
// exitflag =
//
// 0
// fopt =
//
// 0.
// xopt =
//
// - 5.4668503
[xopt,fopt,exitflag,output,lambda] = fminbnd (fun, x1, x2)
|