summaryrefslogtreecommitdiff
path: root/tests/general_tests/fminunc/fminunc_logical1.sce
blob: 54c4d7fa3154e85ace6ac6d8e6f919b69eaf77dc (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
34
35
//Find x in R^2 such that:
// An Unbounded Example

function y = fun(x)
	y = -(x(1)^2 + x(2)^2);
endfunction
x0 = [1,2];
options=list("MaxIter", [1500], "CpuTime", [500], "Gradient", "OFF", "Hessian", "OFF");

//Output
//
//Iterates diverging; problem might be unbounded.
// hessian  =
// 
//     []
// gradient  =
// 
//     []
// output  =
// 
//   Iterations: 65
//   Cpu_Time: 0.112
//   Message: "Iterates diverging; problem might be unbounded"
// exitflag  =
// 
//  8  
// fopt  =
// 
//     []
// xopt  =
// 
//     []

[xopt,fopt,exitflag,output,gradient,hessian] = fminunc (fun, x0, options)