summaryrefslogtreecommitdiff
path: root/tests/general_tests/intfminunc/intfminuc_unbounded.sce
blob: 00f65ab3bc7a4035a6d784fe11003fdbb69cd7ad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
function y = fun(x)
	y = -(x(1)^2 + x(2)^2);
endfunction
x0 = [1,2];
intcon = [1]
options=list("MaxIter", [1500], "CpuTime", [500])

// Objective Function is Continuous Unbounded.
//  output  =
 
//      []
//  exitflag  =
 
//   2  
//  fopt  =
 
//     0.  
//  xopt  =
 
//      []

[xopt,fopt,exitflag,gradient,hessian] = intfminunc (fun, x0,intcon, options)