blob: d36072a0857f106116ab141b930657d4694c8a65 (
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
|
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)
|